diff --git a/code/game/objects/random/random.dm b/code/game/objects/random/random.dm
index 75fecb7ee8a..e543ae4395a 100644
--- a/code/game/objects/random/random.dm
+++ b/code/game/objects/random/random.dm
@@ -13,9 +13,12 @@
/obj/random/Initialize()
. = ..()
if (!prob(spawn_nothing_percentage))
- var/item = spawn_item()
- if (has_postspawn && item)
- post_spawn(item)
+ var/obj/spawned_item = spawn_item()
+ if(spawned_item)
+ spawned_item.pixel_x = pixel_x
+ spawned_item.pixel_y = pixel_y
+ if(has_postspawn)
+ post_spawn(spawned_item)
return INITIALIZE_HINT_QDEL
@@ -1091,3 +1094,87 @@
/obj/item/weapon/gun/custom_ka/frameF/prebuilt01 = 1,
/obj/item/weapon/gun/custom_ka/frameF/prebuilt02 = 1
)
+
+/obj/random/vault_rig
+ name = "random rigsuit"
+ desc = "Contains a random rigsuit found in the vault."
+ icon = 'icons/obj/rig_modules.dmi'
+ icon_state = "breacher_rig"
+ spawnlist = list(
+ /obj/item/weapon/rig/ce/equipped = 1,
+ /obj/item/weapon/rig/combat = 0.5,
+ /obj/item/weapon/rig/diving = 0.1,
+ /obj/item/weapon/rig/ert/assetprotection/empty = 0.1,
+ /obj/item/weapon/rig/ert/janitor = 0.1,
+ /obj/item/weapon/rig/eva/equipped = 0.5,
+ /obj/item/weapon/rig/hazard = 1,
+ /obj/item/weapon/rig/hazmat = 1,
+ /obj/item/weapon/rig/military = 0.1,
+ /obj/item/weapon/rig/unathi = 1,
+ /obj/item/weapon/rig/vaurca/minimal = 0.1
+ )
+
+/obj/random/telecrystals
+ name = "random telecrystals"
+ desc = "Contains a random amount of telecrystals."
+ icon = 'icons/obj/telescience.dmi'
+ icon_state = "telecrystal"
+ spawnlist = list(
+ /obj/item/stack/telecrystal{amount = 10} = 0.7,
+ /obj/item/stack/telecrystal{amount = 25} = 0.2,
+ /obj/item/stack/telecrystal{amount = 5} = 0.1
+ )
+
+/obj/random/bad_ai
+ name = "random evil AI module"
+ desc = "Contains a random evil AI module."
+ icon = 'icons/obj/module.dmi'
+ icon_state = "std_mod"
+ spawnlist = list(
+ /obj/item/weapon/aiModule/antimov = 1,
+ /obj/item/weapon/aiModule/asimov = 1,
+ /obj/item/weapon/aiModule/purge = 1,
+ /obj/item/weapon/aiModule/quarantine = 1,
+ /obj/item/weapon/aiModule/freeform = 1,
+ /obj/item/weapon/aiModule/oneHuman = 0.5,
+ /obj/item/weapon/aiModule/oxygen = 1
+ )
+
+/obj/random/rig_module
+ name = "random rig module"
+ desc = "Contains a random rig module worthy of vault protection."
+ icon = 'icons/obj/rig_modules.dmi'
+ icon_state = "actuators"
+ spawnlist = list(
+ /obj/item/rig_module/actuators/combat = 1,
+ /obj/item/rig_module/chem_dispenser/combat = 1,
+ /obj/item/rig_module/chem_dispenser/injector = 1,
+ /obj/item/rig_module/device/emag_hand = 1,
+ /obj/item/rig_module/device/rcd = 1,
+ /obj/item/rig_module/electrowarfare_suite = 0.5,
+ /obj/item/rig_module/emp_shielding = 0.5,
+ /obj/item/rig_module/fabricator/energy_net = 1,
+ /obj/item/rig_module/fabricator = 0.5,
+ /obj/item/rig_module/grenade_launcher = 0.5,
+ /obj/item/rig_module/maneuvering_jets = 0.5,
+ /obj/item/rig_module/mounted/egun = 1,
+ /obj/item/rig_module/mounted/smg = 0.5,
+ /obj/item/rig_module/vision/multi = 0.5
+ )
+
+/obj/random/finances
+ name = "random valued item"
+ desc = "Contains raw valued items like phoron, gold, and money."
+ spawnlist = list(
+ /obj/item/weapon/spacecash/bundle{worth = 5000} = 0.25,
+ /obj/item/weapon/spacecash/bundle{worth = 10000} = 0.5,
+ /obj/item/weapon/spacecash/bundle{worth = 25000} = 0.25,
+ /obj/item/stack/material/diamond{amount = 20} = 0.5,
+ /obj/item/stack/material/phoron{amount = 50} = 1,
+ /obj/item/stack/material/gold{amount = 50} = 1
+ )
+
+ has_postspawn = TRUE
+
+/obj/random/finances/post_spawn(var/obj/item/spawned)
+ spawned.update_icon()
diff --git a/code/modules/clothing/spacesuits/rig/suits/alien.dm b/code/modules/clothing/spacesuits/rig/suits/alien.dm
index 68d9d32f0d4..fa2da1f3d88 100644
--- a/code/modules/clothing/spacesuits/rig/suits/alien.dm
+++ b/code/modules/clothing/spacesuits/rig/suits/alien.dm
@@ -66,6 +66,9 @@
)
+/obj/item/weapon/rig/vaurca/minimal
+ initial_modules = list(/obj/item/rig_module/chem_dispenser/vaurca)
+
/obj/item/clothing/head/helmet/space/rig/vaurca
species_restricted = list("Vaurca")
light_overlay = "helmet_light_dual_green"
diff --git a/code/modules/clothing/spacesuits/rig/suits/ert.dm b/code/modules/clothing/spacesuits/rig/suits/ert.dm
index 62d8caa3a43..4a140ab2c15 100644
--- a/code/modules/clothing/spacesuits/rig/suits/ert.dm
+++ b/code/modules/clothing/spacesuits/rig/suits/ert.dm
@@ -115,3 +115,6 @@
/obj/item/rig_module/datajack,
/obj/item/rig_module/actuators/combat
)
+
+/obj/item/weapon/rig/ert/assetprotection/empty
+ initial_modules = list()
\ No newline at end of file
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index ee9531b28fd..2d4e6e38d27 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -45,6 +45,11 @@
req_access = null
req_one_access = list(access_engine_equip,access_research,access_xenobiology)
+
+/obj/machinery/power/apc/vault
+ cell_type = /obj/item/weapon/cell
+ req_access = list(access_captain)
+
// Construction site APC, starts turned off
/obj/machinery/power/apc/high/inactive
cell_type = /obj/item/weapon/cell/high
diff --git a/html/changelogs/burgerbb-vault.yml b/html/changelogs/burgerbb-vault.yml
new file mode 100644
index 00000000000..5af017ef6ba
--- /dev/null
+++ b/html/changelogs/burgerbb-vault.yml
@@ -0,0 +1,37 @@
+################################
+# 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
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# maptweak
+# spellcheck (typo fixes)
+# experiment
+# balance
+#################################
+
+# Your name.
+author: BurgerBB
+
+# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
+# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - maptweak: "Completely overhauled the vault by moving it to the main level and adding various ways for antags to break in."
diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm
index 887aa3d5f4a..d96d51838e2 100644
--- a/maps/aurora/aurora-3_sublevel.dmm
+++ b/maps/aurora/aurora-3_sublevel.dmm
@@ -5796,128 +5796,26 @@
"amc" = (
/turf/simulated/open,
/area/mine/unexplored)
-"amd" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"ame" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"amf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/wall/r_wall,
-/area/mine/unexplored)
"amg" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"amh" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"ami" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
+ d1 = 4;
+ 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/airless{
+ icon_state = "asteroidplating"
},
-/turf/simulated/floor/plating,
/area/mine/unexplored)
"amj" = (
/obj/machinery/door/window{
@@ -6054,57 +5952,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/sublevel)
-"amu" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"amv" = (
-/turf/simulated/floor{
- icon_state = "plating"
- },
-/area/turbolift/vault_sub)
-"amw" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
"amx" = (
/obj/machinery/computer/aiupload,
/obj/item/device/radio/intercom/locked{
@@ -6185,30 +6032,6 @@
temperature = 278
},
/area/turret_protected/ai)
-"amG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/mine/unexplored)
-"amH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor{
- icon_state = "plating"
- },
-/area/turbolift/vault_sub)
-"amI" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/simulated/floor{
- icon_state = "plating"
- },
-/area/turbolift/vault_sub)
"amJ" = (
/obj/structure/cable/cyan{
d1 = 2;
@@ -6482,60 +6305,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/sublevel)
-"anf" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"ang" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
"anh" = (
/obj/effect/landmark{
name = "cavernspawn"
@@ -7133,66 +6902,6 @@
temperature = 278
},
/area/turret_protected/ai)
-"anX" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
-"anY" = (
-/obj/turbolift_map_holder/aurora/vault,
-/turf/simulated/floor{
- icon_state = "plating"
- },
-/area/turbolift/vault_sub)
-"anZ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/mine/unexplored)
"aoa" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -7729,20 +7438,6 @@
},
/turf/simulated/wall,
/area/turret_protected/ai)
-"aoD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/starboard)
-"aoE" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/starboard)
-"aoF" = (
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
"aoG" = (
/obj/machinery/door/airlock/highsecurity{
name = "Cyborg Station";
@@ -8017,76 +7712,6 @@
},
/turf/simulated/wall,
/area/turret_protected/ai)
-"apa" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"apb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"apc" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"apd" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
"ape" = (
/turf/simulated/wall/r_wall,
/area/turret_protected/ai_server_room)
@@ -8300,128 +7925,6 @@
temperature = 278
},
/area/turret_protected/ai)
-"apu" = (
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
-"apv" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"apw" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"apx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"apy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/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/tiled,
-/area/hallway/primary/starboard)
-"apz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"apA" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"apB" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
"apC" = (
/obj/machinery/computer/message_monitor,
/obj/machinery/firealarm/west,
@@ -8714,117 +8217,6 @@
roof_type = null
},
/area/maintenance/sublevel)
-"aqa" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
-"aqb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/turretid/lethal{
- ailock = 1;
- check_synth = 1;
- control_area = "\improper Vault";
- desc = "A firewall prevents AIs from interacting with this device.";
- name = "Vault lethal turret control";
- pixel_y = -28;
- req_access = list(20)
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aqc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/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/corner/red{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aqd" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/camera/network/command{
- c_tag = "Command - Vault Sublevel Elevator Access";
- dir = 1
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aqe" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/starboard)
"aqf" = (
/obj/machinery/light/small{
dir = 8
@@ -9114,71 +8506,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"aqB" = (
-/obj/item/weapon/hand_tele,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqC" = (
-/obj/item/weapon/aiModule/freeformcore{
- pixel_x = -4;
- pixel_y = -8
- },
-/obj/item/weapon/aiModule/purge,
-/obj/item/weapon/aiModule/oneHuman{
- pixel_x = 4;
- pixel_y = 8
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqD" = (
-/obj/item/weapon/rig/hazmat,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqE" = (
-/obj/item/rig_module/device/rcd,
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqF" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
-/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
-/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
-/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqG" = (
-/obj/machinery/porta_turret/stationary,
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aqH" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/highsecurity{
- id_tag = "bunker1";
- name = "Vault Access";
- req_access = list(19)
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
"aqI" = (
/obj/machinery/message_server,
/turf/simulated/floor/bluegrid,
@@ -9593,82 +8920,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"ari" = (
-/obj/structure/closet/secure_closet/freezer/money,
-/obj/item/weapon/storage/belt/champion,
-/obj/item/stack/material/gold,
-/obj/item/stack/material/gold,
-/obj/item/stack/material/gold,
-/obj/item/stack/material/gold,
-/obj/item/stack/material/gold,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"arj" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 9
- },
-/obj/machinery/camera/motion{
- c_tag = "Secure Vault - Motion";
- dir = 4;
- network = list("Command")
- },
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"ark" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arl" = (
-/obj/machinery/porta_turret/stationary,
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arm" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arn" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"aro" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arp" = (
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
"arq" = (
/obj/machinery/shieldwallgen,
/obj/structure/cable/cyan,
@@ -9868,120 +9119,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"arK" = (
-/turf/simulated/floor/reinforced,
-/area/security/nuke_storage)
-"arL" = (
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arM" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arO" = (
-/obj/machinery/door/airlock/vault/bolted{
- req_access = list(20)
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/camera/motion{
- c_tag = "Vault Secure Entrance West - Motion";
- dir = 1;
- icon_state = "camera";
- network = list("Command")
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"arU" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/camera/motion{
- c_tag = "Vault Secure Entrance East - Motion";
- dir = 1;
- icon_state = "camera";
- network = list("Command")
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
"arV" = (
/obj/machinery/door/airlock/highsecurity{
name = "AI Upload Access";
@@ -10089,57 +9226,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"asf" = (
-/obj/structure/safe/station,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"asg" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"ash" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"asi" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable,
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/dark,
-/area/security/nuke_storage)
-"asj" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"ask" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
"asl" = (
/obj/item/device/radio/intercom/locked{
frequency = 1343;
@@ -10183,74 +9269,6 @@
/obj/structure/ladder,
/turf/simulated/open,
/area/maintenance/sublevel)
-"asp" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/rig_module/vision/nvg,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"asq" = (
-/obj/item/rig_module/mounted/egun{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/rig_module/mounted/egun{
- pixel_x = -4;
- pixel_y = -4
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"asr" = (
-/obj/item/weapon/rig/hazard{
- pixel_x = -8;
- pixel_y = 0
- },
-/obj/item/weapon/rig/hazard{
- pixel_x = 8;
- pixel_y = 0
- },
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/rig/unathi{
- pixel_y = -6
- },
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"ass" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/rig_module/chem_dispenser/injector,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"ast" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/table/reinforced,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
-"asu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/porta_turret/stationary,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/security/nuke_storage)
"asv" = (
/obj/structure/window/reinforced{
dir = 4
@@ -10282,14 +9300,6 @@
},
/turf/simulated/wall,
/area/mine/unexplored)
-"asz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/security/nuke_storage)
"asA" = (
/obj/machinery/light/small/emergency{
dir = 1
@@ -10758,14 +9768,6 @@
},
/turf/simulated/floor/tiled/white,
/area/outpost/research/analysis)
-"atD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
"atE" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -11108,21 +10110,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"auh" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/mine/unexplored)
"aui" = (
/obj/effect/floor_decal/industrial/warning/dust{
icon_state = "warning_dust";
@@ -11414,32 +10401,6 @@
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"auL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/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
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/mine/unexplored)
"auM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -66024,8 +64985,8 @@ aaa
aaa
aaa
aaa
-aba
-aba
+aaa
+aaa
aba
aba
ard
@@ -66262,27 +65223,27 @@ aaa
aaa
aaa
aaa
-ale
-ale
aaa
aaa
aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
aaa
-ale
-ale
-ale
aaa
-aba
-aba
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aba
aba
ard
@@ -66515,31 +65476,31 @@ aaa
aaa
aaa
aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-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
ard
@@ -66771,32 +65732,32 @@ aaa
aaa
aaa
aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-akG
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-akG
-ale
-ale
-ale
-ale
-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
anh
ard
@@ -67028,32 +65989,32 @@ aaa
aaa
aaa
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
-akG
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-akG
-ale
-ale
-ale
-ale
-aba
aba
aba
ard
@@ -67285,31 +66246,31 @@ aaa
aaa
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
-ale
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-apu
-ale
-ale
-ale
-ale
-ale
+aba
aba
aba
aba
@@ -67542,31 +66503,31 @@ aaa
aaa
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
-ale
-apu
-apu
-apu
-ari
-arK
-asf
-apu
-apu
-apu
-ale
-ale
-ale
-ale
-ale
+aba
+aba
aba
aba
aba
@@ -67799,31 +66760,31 @@ aaa
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
-ale
-apu
-apu
-aqB
-arj
-arl
-asg
-asp
-apu
-apu
-ale
-ale
-ale
-ale
-ale
+aba
+aba
aba
aba
aba
@@ -68056,31 +67017,31 @@ 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
-ale
-apu
-apu
-aqC
-ark
-arL
-ash
-asq
-apu
-apu
-ale
-ale
-ale
-ale
-ale
+aba
+aba
+aba
aba
aba
aba
@@ -68306,6 +67267,26 @@ 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
@@ -68314,31 +67295,11 @@ aaa
aaa
ale
ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-apu
-apu
-aqD
-ark
-arM
-ash
-asr
-apu
-apu
-ale
-ale
-ale
-ale
-ale
-ale
+aba
+aba
+aba
+aaa
+aba
aba
aqy
arf
@@ -68561,6 +67522,9 @@ aaa
aaa
aaa
aaa
+ale
+ale
+ale
aaa
aaa
aaa
@@ -68573,32 +67537,29 @@ ale
ale
ale
ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
ale
ale
ale
-ale
-ale
-ale
-ale
-ale
-apu
-apu
-aqE
-arl
-arL
-arl
-ass
-apu
-apu
-arx
-asy
-asy
-asy
-asy
-asy
-atD
-auh
-auL
+aba
+aba
+aba
+aaa
+aaa
+aba
+aba
+aqA
+amg
avs
awb
awb
@@ -68817,6 +67778,23 @@ aaa
aaa
aaa
aaa
+ale
+ale
+aaa
+aaa
+aaa
+aaa
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ale
+ale
aaa
aaa
aaa
@@ -68824,35 +67802,18 @@ aaa
aaa
aaa
aaa
+ale
+ale
+ale
+ale
+aba
+aba
+aba
+aba
aaa
aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-apu
-apu
-aqF
-arm
-arN
-asi
-ast
-apu
-apu
-arZ
-ale
-ale
-ale
-ale
-ale
+aba
+aba
aba
aui
auM
@@ -69073,43 +68034,43 @@ 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
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-apu
-apu
-apu
-apu
-arO
-apu
-apu
-apu
-apu
-arZ
-ale
-ale
-ale
-ale
-ale
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
ale
akx
auN
@@ -69329,43 +68290,43 @@ 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
-aaa
-aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-akG
-apu
-apu
-apu
-arn
-arP
-asj
-apu
-apu
-apu
-arZ
-ale
-ale
-ale
-ale
+aba
+aba
+aba
+aba
+aba
ale
ale
akx
@@ -69585,46 +68546,46 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
-ale
-ale
ale
ale
+aaa
+aaa
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aaa
+aaa
ale
aba
aba
aba
-ale
-apu
-apu
-aqG
-arn
-arQ
-ask
-asu
-asz
-asz
-ary
-ale
-ale
-ale
-ale
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aba
+aba
+aba
+aba
ale
ale
+aaa
akx
auP
avv
@@ -69842,21 +68803,15 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
ale
+aaa
+aaa
+aaa
+aba
+aba
+aaa
+aaa
+aaa
aba
aba
aba
@@ -69867,21 +68822,27 @@ aba
aba
aba
aba
-apu
-apu
-arn
-arP
-asj
-apu
-apu
-ale
-ale
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aaa
+aba
+aba
+aba
aba
aba
ale
ale
-ale
-ale
+aaa
+aaa
akx
awA
baP
@@ -70098,21 +69059,28 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
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
@@ -70125,20 +69093,13 @@ aba
aba
aba
aba
-apu
-apu
-arR
-apu
-apu
-ale
-ale
-ale
aba
aba
ale
ale
-ale
-ale
+aaa
+aaa
+aaa
akx
aER
baQ
@@ -70355,47 +69316,47 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
ale
+aaa
+aaa
+aaa
aba
aba
aba
-amd
-amu
-amG
-anf
-amG
-anX
-aoD
-apa
-apv
+akG
+akG
+aba
+aaa
+aba
+akG
+akG
+aba
+akG
+akG
+aba
+aba
+aba
+akG
+akG
+aba
+aba
+aba
+aaa
+aaa
+aba
+aaa
+aba
+aba
aba
-ale
-apu
-arS
-apu
-ale
-ale
-ale
-ale
aba
aba
ale
ale
ale
-ale
+aaa
+aaa
+aaa
+aaa
akx
aES
baR
@@ -70611,48 +69572,48 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
ale
ale
+aaa
+aaa
+aaa
aba
aba
aba
-ame
-amv
-amv
-amv
-amv
-anY
-aoE
-apb
-apw
-aqa
-apu
-apu
-arT
-apu
-ale
-ale
-ale
-ale
+akG
aba
aba
aba
aba
+aba
+akG
+aba
+akG
+aba
+aba
+aaa
+aba
+aba
+akG
+aba
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aba
+aba
+aba
+aaa
ale
ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
akx
auS
auS
@@ -70868,48 +69829,48 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
ale
+aaa
+aaa
+aaa
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aaa
+aaa
+aba
+aba
+aba
+aba
+aba
+aba
aba
aba
aba
-amf
-amv
-amH
-amv
-amv
-amv
-aoF
-apb
-apx
-aqb
-apu
-ark
-arT
-apu
-ale
-ale
-ale
-ale
aba
aba
aba
ale
ale
ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
akx
akx
akx
@@ -71125,47 +70086,47 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
ale
+aaa
+aaa
+aaa
+aba
+aba
+aaa
+aba
+aba
+aba
+aba
+akG
+aba
+aba
+aba
+aba
+aba
+aba
+aaa
+akG
+aba
+aba
+aba
aba
aba
aba
-amg
-amv
-amv
-amv
-amv
-amv
-aoF
-apc
-apy
-aqc
-aqH
-aro
-arU
-apu
-ale
-ale
-ale
aba
aba
aba
aba
ale
ale
+ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71382,40 +70343,29 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
ale
+aaa
+aaa
+aba
+aba
+aaa
+aaa
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
+aba
aba
aba
-amf
-amv
-amI
-amv
-amv
-amv
-aoF
-apb
-apz
-aqd
-apu
-arp
-arL
-apu
-ale
-ale
aba
aba
aba
@@ -71423,6 +70373,17 @@ aba
aba
ale
ale
+ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71639,47 +70600,47 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
-aba
-aba
-amh
-amv
-amv
-amv
-amv
-amv
-aoE
-apb
-apA
-aqe
-apu
-apu
-apu
-apu
ale
+aaa
+aaa
aba
aba
aba
aba
+aba
+akG
+aba
+aba
+aba
+aba
+aba
+akG
+aba
+akG
+aba
+aba
+aba
+aba
+aba
+akG
+aba
+aba
+aaa
+aaa
+aaa
ale
-ale
-ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71896,46 +70857,46 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
-aba
-aba
-ami
-amw
-amG
-ang
-amG
-anZ
-aoD
-apd
-apB
-ale
-ale
-ale
-ale
-ale
ale
+aaa
+aaa
+aaa
+aaa
aba
aba
aba
+akG
+akG
aba
+aba
+aba
+akG
+akG
+aba
+akG
+akG
+aba
+aba
+aba
+akG
+akG
+aba
+aba
+aaa
+aaa
+aaa
ale
-ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72153,46 +71114,46 @@ aaa
aaa
aaa
aaa
+ale
+ale
aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-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
-ale
-ale
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-ale
-ale
-ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72411,43 +71372,43 @@ aaa
aaa
aaa
aaa
+ale
aaa
aaa
aaa
aaa
+aba
+aba
+aba
+aba
+aba
+aba
aaa
aaa
+aba
+aba
+aba
+aba
aaa
-aaa
-aaa
-aaa
+aba
+aba
+aba
+aba
+aba
+aba
aaa
aaa
ale
-ale
-ale
-ale
-ale
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-aba
-ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72668,43 +71629,43 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aba
aba
-anh
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
+aba
+aaa
+aaa
aba
aba
aba
aba
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
ale
-ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72925,6 +71886,8 @@ aaa
aaa
aaa
aaa
+ale
+ale
aaa
aaa
aaa
@@ -72933,35 +71896,33 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
aba
aba
+aba
+aaa
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
ale
ale
-ale
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73183,6 +72144,31 @@ 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
@@ -73199,31 +72185,6 @@ aaa
aaa
aaa
aaa
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-ale
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -73441,25 +72402,6 @@ 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
@@ -73469,6 +72411,15 @@ aaa
aaa
aaa
aaa
+aba
+aba
+aba
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
ale
@@ -73491,6 +72442,16 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
akx
akV
akx
@@ -73699,26 +72660,26 @@ aaa
aaa
aaa
aaa
+ale
+ale
+ale
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
+ale
+ale
+ale
+ale
aaa
aaa
aaa
@@ -73958,21 +72919,21 @@ aaa
aaa
aaa
aaa
+ale
+ale
+ale
+ale
+aaa
+aba
+aba
aaa
aaa
+aba
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+ale
+ale
+ale
+ale
aaa
aaa
aaa
@@ -74218,15 +73179,15 @@ aaa
aaa
aaa
aaa
+ale
+ale
+aba
+aba
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aba
+aba
+ale
+ale
aaa
aaa
aaa
@@ -74476,13 +73437,13 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+ale
+aba
+aba
+aba
+aba
+aba
+ale
aaa
aaa
aaa
diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm
index 0f2e1738414..ee6b8915af0 100644
--- a/maps/aurora/aurora-4_mainlevel.dmm
+++ b/maps/aurora/aurora-4_mainlevel.dmm
@@ -62,31 +62,6 @@
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
"aal" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"aam" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aan" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aao" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 4
@@ -100,7 +75,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aap" = (
+"aam" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
icon_state = "door_locked";
@@ -112,8 +87,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaq" = (
+"aan" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aao" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -122,7 +107,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aar" = (
+"aap" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 4
@@ -133,7 +118,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aas" = (
+"aaq" = (
/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
frequency = 1379;
id_tag = "rich_command_airlock";
@@ -166,32 +151,17 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aat" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aau" = (
-/obj/effect/decal/cleanable/dirt,
+"aar" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/floor_decal/industrial/warning{
- dir = 1
+ dir = 8
},
/obj/structure/window/reinforced{
- dir = 1
+ dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aav" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aaw" = (
+"aas" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -203,7 +173,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aax" = (
+"aat" = (
/obj/machinery/door/airlock/external{
frequency = 1379;
icon_state = "door_locked";
@@ -216,7 +186,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aay" = (
+"aau" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -228,6 +198,46 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
+"aav" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aax" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aay" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "rich_command_airlock";
+ name = "interior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_access = list(13)
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
"aaz" = (
/obj/structure/lattice,
/obj/structure/lattice,
@@ -263,28 +273,26 @@
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
"aaF" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "rich_command_airlock";
- name = "interior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_access = list(13)
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
"aaG" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aaH" = (
/obj/structure/grille/broken,
/obj/structure/lattice,
/obj/structure/grille/broken,
/obj/structure/lattice,
/turf/simulated/floor/asteroid/ash/rocky,
/area/mine/unexplored)
-"aaH" = (
+"aaI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -298,20 +306,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaI" = (
-/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)
"aaJ" = (
/obj/structure/cable{
d1 = 4;
@@ -324,10 +318,24 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/random/junk,
/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;
@@ -344,7 +352,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaL" = (
+"aaM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -361,7 +369,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaM" = (
+"aaN" = (
/obj/effect/decal/cleanable/generic,
/obj/structure/cable{
d1 = 4;
@@ -377,7 +385,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaN" = (
+"aaO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -393,19 +401,12 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaO" = (
+"aaP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aaP" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
"aaQ" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
@@ -437,11 +438,15 @@
/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)
-"aaX" = (
+"aaY" = (
/obj/structure/bed/chair,
/obj/item/weapon/handcuffs,
/obj/effect/decal/cleanable/blood,
@@ -454,7 +459,7 @@
},
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"aaY" = (
+"aaZ" = (
/obj/structure/table/standard,
/obj/item/weapon/scalpel{
desc = "Cut, cut, and once more cut. This one looks a little rusty. Perhaps its best not to cut yourself with this!";
@@ -467,7 +472,7 @@
/obj/effect/decal/cleanable/cobweb2,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"aaZ" = (
+"aba" = (
/obj/structure/flora/pottedplant/random,
/obj/machinery/light{
dir = 8;
@@ -480,13 +485,13 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"aba" = (
+"abb" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abb" = (
+"abc" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -498,7 +503,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abc" = (
+"abd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -507,7 +512,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abd" = (
+"abe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -521,7 +526,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abe" = (
+"abf" = (
/obj/structure/flora/pottedplant/random,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
@@ -534,7 +539,7 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abf" = (
+"abg" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -549,7 +554,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"abg" = (
+"abh" = (
/obj/effect/floor_decal/corner/blue/full{
icon_state = "corner_white_full";
dir = 8
@@ -557,18 +562,18 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/security/brig)
-"abh" = (
+"abi" = (
/obj/effect/floor_decal/corner/blue/full{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"abi" = (
+"abj" = (
/obj/effect/decal/cleanable/dirt,
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abj" = (
+"abk" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -583,23 +588,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abk" = (
-/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)
"abl" = (
-/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
@@ -615,6 +604,34 @@
/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;
@@ -631,28 +648,28 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abn" = (
+"abp" = (
/obj/structure/reagent_dispensers/extinguisher,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abo" = (
+"abq" = (
/obj/effect/decal/cleanable/cobweb2{
icon_state = "spiderling";
name = "dead spider"
},
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"abp" = (
+"abr" = (
/obj/random/junk,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"abq" = (
+"abs" = (
/obj/effect/decal/cleanable/vomit,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"abr" = (
+"abt" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/glass/bottle/toxin,
/obj/item/weapon/reagent_containers/syringe,
@@ -660,7 +677,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"abs" = (
+"abu" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -682,7 +699,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abt" = (
+"abv" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -704,27 +721,24 @@
},
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"abu" = (
+"abw" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abv" = (
+"abx" = (
/obj/effect/floor_decal/corner/blue,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abw" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
+"aby" = (
+/obj/effect/floor_decal/corner/blue{
dir = 10
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"abx" = (
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice2)
+"abz" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -734,7 +748,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"aby" = (
+"abA" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -744,14 +758,14 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abz" = (
+"abB" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abA" = (
+"abC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -759,7 +773,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abB" = (
+"abD" = (
/obj/machinery/door/airlock/glass_security{
name = "Briefing Room";
req_access = list(63)
@@ -767,40 +781,43 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abC" = (
+"abE" = (
/turf/simulated/floor/tiled,
/area/security/brig)
-"abD" = (
+"abF" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"abE" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"abF" = (
+"abG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access = list(63)
+ },
+/obj/machinery/door/firedoor,
+/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,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abG" = (
+"abI" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abH" = (
+"abJ" = (
/obj/structure/girder,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abI" = (
+"abK" = (
/turf/simulated/wall,
/area/maintenance/substation/security)
-"abJ" = (
+"abL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -810,11 +827,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abK" = (
+"abM" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abL" = (
+"abN" = (
/obj/structure/table/rack,
/obj/item/weapon/shovel,
/obj/effect/decal/cleanable/dirt,
@@ -822,7 +839,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"abM" = (
+"abO" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -841,7 +858,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abN" = (
+"abP" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -860,19 +877,19 @@
},
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"abO" = (
+"abQ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"abP" = (
+"abR" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/sec,
/turf/simulated/floor/carpet,
/area/security/vacantoffice2)
-"abQ" = (
+"abS" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -886,36 +903,36 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"abR" = (
+"abT" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"abS" = (
+"abU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abT" = (
+"abV" = (
/obj/structure/closet/crate,
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abU" = (
+"abW" = (
/obj/structure/closet,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abV" = (
+"abX" = (
/obj/structure/table/rack,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abW" = (
+"abY" = (
/obj/structure/barricade,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"abX" = (
+"abZ" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -935,7 +952,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"abY" = (
+"aca" = (
/obj/machinery/power/smes/buildable{
charge = 0;
RCon_tag = "Substation - Security Main"
@@ -950,22 +967,22 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"abZ" = (
+"acb" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Security Main Substation Bypass"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"aca" = (
+"acc" = (
/obj/effect/decal/cleanable/dirt,
/obj/random/loot,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"acb" = (
+"acd" = (
/obj/structure/girder/displaced,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"acc" = (
+"ace" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -977,7 +994,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acd" = (
+"acf" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -990,19 +1007,19 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"ace" = (
+"acg" = (
/obj/structure/table/standard,
/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/carpet,
/area/security/vacantoffice2)
-"acf" = (
+"ach" = (
/turf/simulated/floor/carpet,
/area/security/vacantoffice2)
-"acg" = (
+"aci" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/carpet,
/area/security/vacantoffice2)
-"ach" = (
+"acj" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -1015,7 +1032,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"aci" = (
+"ack" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/camera/network/security{
c_tag = "Security - Briefing Room";
@@ -1028,7 +1045,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acj" = (
+"acl" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -1039,7 +1056,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"ack" = (
+"acm" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -1051,10 +1068,10 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"acl" = (
+"acn" = (
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"acm" = (
+"aco" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -1067,7 +1084,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"acn" = (
+"acp" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -1083,7 +1100,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"aco" = (
+"acq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -1098,7 +1115,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"acp" = (
+"acr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/engineering{
name = "Security Substation";
@@ -1113,7 +1130,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"acq" = (
+"acs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
@@ -1133,7 +1150,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acr" = (
+"act" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 2;
@@ -1148,7 +1165,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acs" = (
+"acu" = (
/obj/effect/landmark{
name = "cavernspawn"
},
@@ -1157,7 +1174,7 @@
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/mine/unexplored)
-"act" = (
+"acv" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -1169,7 +1186,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"acu" = (
+"acw" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -1180,7 +1197,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"acv" = (
+"acx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -1189,7 +1206,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acw" = (
+"acy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -1200,12 +1217,12 @@
/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acx" = (
+"acz" = (
/obj/structure/closet/crate,
/obj/random/loot,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"acy" = (
+"acA" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -1218,7 +1235,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/security)
-"acz" = (
+"acB" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -1230,51 +1247,40 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acA" = (
+"acC" = (
+/obj/structure/lattice,
+/turf/simulated/floor/airless,
+/area/mine/unexplored)
+"acD" = (
+/obj/item/weapon/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 = 1
- },
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced{
dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"acB" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"acC" = (
-/obj/structure/table/rack{
- dir = 1
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "Security Lockdown";
+ name = "Security Blast Door";
+ opacity = 0
},
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/extinguisher,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acD" = (
-/obj/structure/lattice,
-/turf/simulated/floor/airless,
-/area/mine/unexplored)
-"acE" = (
-/obj/item/weapon/material/shard{
- icon_state = "medium"
- },
-/turf/simulated/floor/airless,
-/area/mine/unexplored)
-"acF" = (
-/obj/structure/girder,
-/turf/simulated/floor/airless,
-/area/mine/unexplored)
"acG" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
@@ -1294,28 +1300,8 @@
opacity = 0
},
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"acH" = (
-/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;
- dir = 1;
- icon_state = "pdoor0";
- id = "Security Lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"acI" = (
+"acH" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -1327,7 +1313,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acJ" = (
+"acI" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -1339,15 +1325,18 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
+"acJ" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/vacantoffice2)
"acK" = (
-/obj/structure/track{
- icon_state = "track9"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"acL" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -1364,7 +1353,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acM" = (
+"acL" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -1384,7 +1373,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acN" = (
+"acM" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -1404,7 +1393,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acO" = (
+"acN" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -1418,7 +1407,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acP" = (
+"acO" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -1437,7 +1426,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acQ" = (
+"acP" = (
/obj/machinery/door/airlock/glass_security{
name = "Briefing Room";
req_access = list(63)
@@ -1456,7 +1445,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acR" = (
+"acQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -1470,7 +1459,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"acS" = (
+"acR" = (
/obj/item/stack/tile/floor,
/obj/item/weapon/autopsy_scanner,
/obj/machinery/light_construct{
@@ -1484,7 +1473,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"acT" = (
+"acS" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -1492,28 +1481,18 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"acU" = (
+"acT" = (
/obj/item/weapon/wrench,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
+"acU" = (
+/turf/simulated/wall,
+/area/maintenance/civ)
"acV" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
+/area/maintenance/civ)
"acW" = (
-/obj/structure/closet,
-/obj/item/clothing/head/ushanka,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"acX" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
dir = 2;
@@ -1529,20 +1508,14 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"acY" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/vacantoffice2)
-"acZ" = (
+"acX" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"ada" = (
+"acY" = (
/obj/machinery/disposal,
/obj/machinery/light{
dir = 4;
@@ -1557,7 +1530,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"adb" = (
+"acZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -1575,7 +1548,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/vacantoffice2)
-"adc" = (
+"ada" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -1593,15 +1566,15 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"add" = (
+"adb" = (
/obj/structure/barricade,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"ade" = (
+"adc" = (
/obj/structure/morgue,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"adf" = (
+"add" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
d1 = 1;
@@ -1610,16 +1583,16 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"adg" = (
+"ade" = (
/obj/item/bodybag,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"adh" = (
+"adf" = (
/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"adi" = (
+"adg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1631,68 +1604,57 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"adj" = (
+"adh" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/hydrant{
- pixel_x = 0;
- pixel_y = -32
- },
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"adk" = (
-/obj/item/device/t_scanner,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"adl" = (
+/area/maintenance/civ)
+"adi" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
+"adj" = (
+/obj/structure/table/reinforced,
+/obj/item/trash/tray,
+/obj/machinery/door/window/southright,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"adk" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"adl" = (
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
"adm" = (
-/obj/random/junk,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
"adn" = (
+/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"ado" = (
-/obj/machinery/constructable_frame/machine_frame,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"adp" = (
-/obj/machinery/constructable_frame/machine_frame,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"adq" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"adr" = (
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/decal/remains/mouse,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ads" = (
/obj/structure/grille/broken,
/obj/structure/lattice,
/obj/item/weapon/material/shard,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"adt" = (
+"adp" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"adu" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"adv" = (
+"adq" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access = list(63)
+ },
+/turf/simulated/floor/plating,
+/area/security/vacantoffice2)
+"adr" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/cups,
/obj/effect/floor_decal/corner/blue/diagonal,
@@ -1702,7 +1664,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"adw" = (
+"ads" = (
/obj/item/device/radio/intercom/locked{
pixel_y = -32
},
@@ -1714,7 +1676,7 @@
/obj/machinery/papershredder,
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"adx" = (
+"adt" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/alarm{
@@ -1724,7 +1686,7 @@
},
/turf/simulated/floor/tiled,
/area/security/vacantoffice2)
-"ady" = (
+"adu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -1742,20 +1704,17 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"adz" = (
-/obj/structure/grille,
+"adv" = (
+/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)
+ },
/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
/turf/simulated/floor/plating,
-/area/rnd/misc_lab)
-"adA" = (
+/area/security/brig)
+"adw" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
@@ -1765,51 +1724,70 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"adB" = (
+"adx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"adC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"adD" = (
-/mob/living/simple_animal/mouse/gray,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"adE" = (
-/obj/item/stack/tile/floor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"adF" = (
+"ady" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/decal/cleanable/cobweb2,
/obj/effect/decal/remains/mouse,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"adG" = (
+"adz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"adA" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/civ)
+"adB" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/tiled,
+/area/maintenance/civ)
+"adC" = (
+/obj/item/weapon/stool/padded,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"adH" = (
+"adD" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"adE" = (
+/obj/item/weapon/stool/padded,
/mob/living/simple_animal/mouse/gray,
/turf/simulated/floor/plating,
/area/maintenance/civ)
+"adF" = (
+/obj/effect/decal/cleanable/generic,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"adG" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled,
+/area/maintenance/civ)
+"adH" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
"adI" = (
+/obj/item/weapon/material/shard,
/turf/simulated/floor/plating,
/area/maintenance/civ)
"adJ" = (
-/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/civ)
"adK" = (
@@ -2116,15 +2094,12 @@
"aeh" = (
/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
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -2132,52 +2107,85 @@
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
"aei" = (
-/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)
-"aej" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aek" = (
+/obj/machinery/constructable_frame/machine_frame,
/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/mouse/gray,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"aej" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"aek" = (
+/obj/structure/table/standard,
+/obj/item/stack/tile/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"ael" = (
-/turf/simulated/floor/tiled,
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "spiderling";
+ name = "dead spider"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"aem" = (
-/obj/item/stack/tile/floor,
+/obj/structure/table/standard,
+/obj/item/trash/tray,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/civ)
"aen" = (
+/obj/structure/table/standard,
+/obj/random/loot,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/civ)
"aeo" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard,
+/obj/item/clothing/gloves/fyellow,
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
+/area/maintenance/civ)
"aep" = (
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/simulated/floor/tiled,
+/area/maintenance/civ)
+"aeq" = (
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/loot,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"aer" = (
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/loot,
+/turf/simulated/floor/tiled,
+/area/maintenance/civ)
+"aes" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"aet" = (
/obj/item/weapon/material/shard{
icon_state = "small"
},
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"aeq" = (
+"aeu" = (
/obj/structure/table/standard,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -2185,7 +2193,7 @@
/obj/item/weapon/folder/sec,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aer" = (
+"aev" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2194,7 +2202,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aes" = (
+"aew" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2203,17 +2211,21 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aet" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
+"aex" = (
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access = list(1)
},
-/turf/simulated/floor/plating,
-/area/rnd/misc_lab)
-"aeu" = (
+/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
},
@@ -2227,7 +2239,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aev" = (
+"aez" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -2235,7 +2247,7 @@
/obj/effect/floor_decal/corner/blue,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aew" = (
+"aeA" = (
/obj/structure/disposalpipe/junction{
dir = 8
},
@@ -2245,7 +2257,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aex" = (
+"aeB" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -2255,7 +2267,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aey" = (
+"aeC" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -2266,13 +2278,13 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aez" = (
+"aeD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aeA" = (
+"aeE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -2283,7 +2295,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aeB" = (
+"aeF" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -2292,7 +2304,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aeC" = (
+"aeG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -2301,21 +2313,16 @@
dir = 4
},
/area/security/brig)
-"aeD" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
+"aeH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/rnd/misc_lab)
-"aeE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aeI" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -2333,7 +2340,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aeF" = (
+"aeJ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -2350,13 +2357,29 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aeG" = (
-/obj/machinery/light{
- dir = 1
+"aeK" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access = list(63)
},
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"aeH" = (
+/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/tiled,
+/area/security/brig)
+"aeL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2373,7 +2396,7 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"aeI" = (
+"aeM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -2390,7 +2413,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aeJ" = (
+"aeN" = (
/obj/item/weapon/reagent_containers/food/snacks/donkpocket,
/obj/effect/decal/cleanable/generic,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2409,7 +2432,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aeK" = (
+"aeO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -2420,7 +2443,7 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"aeL" = (
+"aeP" = (
/obj/structure/morgue{
icon_state = "morgue1";
dir = 8
@@ -2432,80 +2455,31 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
-"aeM" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aeN" = (
-/obj/effect/decal/cleanable/dirt,
+"aeQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
pixel_y = 0
},
-/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/table/rack,
-/obj/random/loot,
+/obj/random/junk,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aeO" = (
-/turf/simulated/wall,
-/area/maintenance/civ)
-"aeP" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"aeQ" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
"aeR" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/tray,
-/obj/machinery/door/window/southleft,
-/obj/machinery/door/firedoor,
+/obj/item/weapon/stool/padded,
+/obj/item/weapon/material/shard,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/civ)
"aeS" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
+/obj/item/weapon/stool/padded,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
/area/maintenance/civ)
"aeT" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced,
-/obj/random/loot,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aeU" = (
-/obj/structure/table/reinforced,
-/obj/item/trash/tray,
-/obj/machinery/door/window/southright,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aeV" = (
/obj/effect/landmark{
name = "carpspawn"
},
@@ -2514,17 +2488,34 @@
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/mine/unexplored)
-"aeW" = (
+"aeU" = (
/obj/structure/grille/broken,
/obj/effect/decal/cleanable/dirt,
/obj/random/loot,
/turf/simulated/floor/airless,
/area/mine/unexplored)
-"aeX" = (
+"aeV" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/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/weapon/paper_bin{
@@ -2591,21 +2582,8 @@
/turf/simulated/floor/tiled,
/area/security/brig)
"afd" = (
-/obj/machinery/door/airlock/research{
- name = "Materials";
- req_access = list(47)
- },
-/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/white,
-/area/rnd/misc_lab)
+/turf/simulated/wall,
+/area/security/main)
"afe" = (
/turf/simulated/wall/r_wall,
/area/security/investigations)
@@ -2642,11 +2620,6 @@
/turf/simulated/floor/tiled,
/area/maintenance/security_starboard)
"afk" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"afl" = (
-/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2655,43 +2628,37 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
-/obj/random/loot,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
+"afl" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
"afm" = (
-/obj/effect/decal/cleanable/cobweb2{
- icon_state = "cobweb1"
- },
-/turf/simulated/floor/tiled,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"afn" = (
-/obj/effect/decal/remains/mouse,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
"afo" = (
-/obj/item/stack/tile/floor,
-/obj/effect/decal/cleanable/generic,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"afp" = (
-/obj/effect/decal/cleanable/vomit,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"afq" = (
-/obj/effect/decal/cleanable/dirt,
-/mob/living/simple_animal/mouse/gray,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"afr" = (
/turf/simulated/wall,
/area/maintenance/engineering)
-"afs" = (
+"afp" = (
/obj/machinery/door/airlock/external,
/obj/machinery/door/firedoor,
/turf/simulated/floor/airless,
/area/maintenance/engineering)
-"aft" = (
+"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{
@@ -2704,7 +2671,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/brig)
-"afu" = (
+"afs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
@@ -2713,7 +2680,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/brig)
-"afv" = (
+"aft" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted,
/obj/structure/window/reinforced/tinted{
@@ -2726,7 +2693,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/brig)
-"afw" = (
+"afu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -2744,7 +2711,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"afx" = (
+"afv" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -2752,64 +2719,89 @@
},
/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{
+ icon_state = "rwindow";
+ 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/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/security/main)
"afy" = (
/obj/structure/table/standard,
-/obj/item/weapon/storage/box/beakers,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/crowbar,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 22
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/security/main)
"afz" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/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/structure/reagent_dispensers/peppertank{
+ pixel_y = 32
},
-/turf/simulated/floor/plating,
-/area/engineering/drone_fabrication)
-"afA" = (
-/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/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
},
/turf/simulated/floor/tiled,
-/area/engineering/engine_monitoring)
+/area/security/main)
+"afA" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/main)
"afB" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
},
-/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{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
"afC" = (
/obj/structure/closet{
name = "Evidence Closet"
@@ -2837,6 +2829,17 @@
},
/area/security/investigations)
"afF" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"afG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"afH" = (
+/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2845,48 +2848,40 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/closet/crate,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"afG" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"afH" = (
-/obj/item/weapon/stool/padded,
-/mob/living/simple_animal/mouse/gray,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
"afI" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"afJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"afK" = (
/obj/structure/barricade,
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"afL" = (
+"afJ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting equipment";
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"afK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"afM" = (
+"afL" = (
/obj/structure/bed/chair,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"afN" = (
+"afM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 6
@@ -2896,134 +2891,130 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"afO" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"afN" = (
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = list(1)
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering)
-"afP" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"afO" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afR" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
},
-/obj/machinery/light_switch{
- pixel_y = 28
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"afP" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Storage";
+ req_access = list(1)
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afS" = (
-/obj/machinery/camera/network/engineering{
- c_tag = "Maintenance - Atmospherics"
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"afT" = (
-/obj/machinery/disposal,
-/obj/item/device/radio/intercom{
- pixel_x = 27
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afU" = (
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/mauve{
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/security/main)
+"afQ" = (
+/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
},
-/obj/structure/table/standard,
-/obj/item/weapon/storage/fancy/vials,
-/obj/item/weapon/reagent_containers/dropper,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afV" = (
-/obj/structure/bed/chair/office/light{
+/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{
+ pixel_x = 32
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "Security - Equipment Storage";
dir = 8
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
+/turf/simulated/floor/tiled,
+/area/security/main)
+"afU" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
+"afV" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
"afW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"afX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark{
name = "cooled dark floor";
temperature = 278
},
/area/security/investigations)
+"afX" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/security/investigations)
"afY" = (
/obj/structure/closet{
name = "Evidence Closet"
},
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
/turf/simulated/floor/tiled/dark{
name = "cooled dark floor";
temperature = 278
@@ -3048,82 +3039,56 @@
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
"aga" = (
-/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/security_starboard)
-"agb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/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
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
+"agb" = (
+/obj/structure/table/standard,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
"agc" = (
+/obj/structure/table/standard,
/obj/effect/decal/cleanable/generic,
-/turf/simulated/floor/tiled,
+/obj/item/weapon/material/shard,
+/obj/random/loot,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"agd" = (
/obj/structure/table/standard,
-/obj/item/stack/tile/floor,
-/turf/simulated/floor/tiled,
+/obj/effect/decal/cleanable/generic,
+/obj/random/loot,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
"age" = (
/obj/structure/table/standard,
-/obj/effect/decal/cleanable/cobweb2{
- icon_state = "spiderling";
- name = "dead spider"
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"agf" = (
-/obj/structure/table/standard,
-/obj/item/trash/tray,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"agg" = (
-/obj/structure/table/standard,
/obj/random/loot,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
-"agh" = (
-/obj/structure/table/standard,
-/obj/effect/decal/remains/mouse,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"agi" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"agj" = (
+"agf" = (
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agk" = (
+"agg" = (
/obj/structure/girder/displaced,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agl" = (
+"agh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/alarm{
@@ -3131,7 +3096,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"agm" = (
+"agi" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -3145,7 +3110,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"agn" = (
+"agj" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -3156,13 +3121,13 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ago" = (
+"agk" = (
/obj/structure/table/standard,
/obj/item/device/flashlight/lamp,
/obj/item/device/taperecorder,
/turf/simulated/floor/tiled,
/area/security/brig)
-"agp" = (
+"agl" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
frequency = 1449;
@@ -3175,63 +3140,99 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"agq" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"agr" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"ags" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"agt" = (
-/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/rnd/misc_lab)
-"agu" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+"agm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/cable/green,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/security/main)
+"agn" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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/quartermaster/lobby)
+/area/security/main)
+"agq" = (
+/obj/machinery/disposal,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/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/effect/floor_decal/industrial/outline/grey,
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/security/investigations)
"agv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark{
@@ -3275,48 +3276,61 @@
req_access = list(12)
},
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
+/area/maintenance/civ)
"agA" = (
/obj/item/weapon/stool/padded,
-/obj/item/weapon/material/shard,
+/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
"agB" = (
/obj/item/weapon/stool/padded,
-/obj/item/stack/tile/floor,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/weapon/material/shard,
/turf/simulated/floor/tiled,
/area/maintenance/civ)
"agC" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/atmos)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
"agD" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_starboard)
"agE" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
+/turf/simulated/wall/r_wall,
/area/engineering/atmos)
"agF" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"agG" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/atmos)
+"agH" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
@@ -3326,24 +3340,24 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos)
-"agG" = (
+"agI" = (
/obj/structure/sign/vacuum{
pixel_y = 32
},
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agH" = (
+"agJ" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agI" = (
+"agK" = (
/obj/item/stack/cable_coil,
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agJ" = (
+"agL" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -3355,7 +3369,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agK" = (
+"agM" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -3364,7 +3378,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agL" = (
+"agN" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -3376,7 +3390,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"agM" = (
+"agO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -3391,13 +3405,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"agN" = (
+"agP" = (
/obj/structure/bed/chair{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"agO" = (
+"agQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -3414,7 +3428,7 @@
/obj/structure/closet/walllocker/emerglocker/west,
/turf/simulated/floor/tiled,
/area/security/brig)
-"agP" = (
+"agR" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -3425,37 +3439,107 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"agQ" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
+"agS" = (
+/obj/structure/closet/secure_closet/security,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"agR" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/turf/simulated/floor/tiled/dark,
+/area/security/main)
+"agT" = (
+/obj/effect/floor_decal/corner/blue/full{
+ icon_state = "corner_white_full";
dir = 8
},
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/floor_decal/corner/mauve{
+/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/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/blue{
icon_state = "corner_white";
dir = 6
},
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"agS" = (
+/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)
+ },
+/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{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
+"agZ" = (
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/door/window/westleft,
+/obj/structure/curtain/open/shower,
+/obj/item/weapon/soap,
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
+"aha" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 5
@@ -3465,7 +3549,7 @@
temperature = 278
},
/area/security/investigations)
-"agT" = (
+"ahb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -3474,47 +3558,70 @@
temperature = 278
},
/area/security/investigations)
-"agU" = (
+"ahc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet,
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"agV" = (
+"ahd" = (
/obj/machinery/computer/arcade,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"agW" = (
+"ahe" = (
/obj/machinery/constructable_frame/machine_frame,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"agX" = (
-/obj/item/stack/tile/floor,
-/turf/simulated/floor/tiled,
+"ahf" = (
+/obj/machinery/constructable_frame/machine_frame,
+/turf/simulated/floor/plating,
/area/maintenance/civ)
-"agY" = (
-/obj/item/stack/rods,
-/obj/item/weapon/material/shard,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"agZ" = (
+"ahg" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ahh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ id_tag = "bunker1";
+ name = "Unlabeled Secure Airlock";
+ req_access = list(19)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ahi" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_waste)
-"aha" = (
+"ahj" = (
/turf/simulated/wall/r_wall,
/area/engineering/drone_fabrication)
-"ahb" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
+"ahk" = (
+/turf/simulated/wall/r_wall,
/area/maintenance/atmos_control)
-"ahc" = (
+"ahl" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/simulated/wall/r_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)
-"ahd" = (
+"ahn" = (
/obj/machinery/atmospherics/portables_connector,
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/window/reinforced{
@@ -3522,7 +3629,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahe" = (
+"aho" = (
/obj/machinery/atmospherics/portables_connector,
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/window/reinforced{
@@ -3531,7 +3638,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahf" = (
+"ahp" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/atmospherics/portables_connector,
/obj/structure/window/reinforced{
@@ -3542,7 +3649,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahg" = (
+"ahq" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -3553,7 +3660,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahh" = (
+"ahr" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
icon_state = "map";
dir = 1
@@ -3567,7 +3674,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahi" = (
+"ahs" = (
/obj/machinery/atmospherics/pipe/zpipe/down/cyan{
icon_state = "down";
dir = 8
@@ -3576,7 +3683,7 @@
/obj/machinery/firealarm/east,
/turf/simulated/open,
/area/engineering/atmos)
-"ahj" = (
+"aht" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -3591,7 +3698,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahk" = (
+"ahu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -3605,7 +3712,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahl" = (
+"ahv" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3623,7 +3730,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahm" = (
+"ahw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3638,7 +3745,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahn" = (
+"ahx" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3654,7 +3761,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aho" = (
+"ahy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3670,7 +3777,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahp" = (
+"ahz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3684,7 +3791,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ahq" = (
+"ahA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -3703,10 +3810,24 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"ahr" = (
+"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)
-"ahs" = (
+"ahD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -3725,47 +3846,87 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aht" = (
-/obj/machinery/smartfridge/drying_rack,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"ahu" = (
-/obj/structure/table/standard,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- layer = 2.85;
- name = "hydroponics desk";
- req_access = list(35)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"ahv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"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/blue{
+ icon_state = "corner_white";
+ 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 = "1-4"
+ icon_state = "2-4"
},
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ahw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
+/turf/simulated/floor/tiled/dark,
+/area/security/main)
+"ahG" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
},
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ahx" = (
+/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{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/main)
+"ahI" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/item/weapon/towel,
+/turf/simulated/floor/tiled/freezer,
+/area/security/main)
+"ahL" = (
/obj/structure/filingcabinet/filingcabinet{
desc = "A large cabinet with drawers. There seems to be a layer of dust covering it."
},
@@ -3781,7 +3942,7 @@
temperature = 278
},
/area/security/investigations)
-"ahy" = (
+"ahM" = (
/obj/item/weapon/stool/padded{
desc = "Apply butt. This particular stool looks tattered and old. Perhaps there have been budget cuts?";
name = "Tattered Stool"
@@ -3791,7 +3952,7 @@
temperature = 278
},
/area/security/investigations)
-"ahz" = (
+"ahN" = (
/obj/machinery/alarm/cold{
dir = 8;
icon_state = "alarm0";
@@ -3804,7 +3965,11 @@
temperature = 278
},
/area/security/investigations)
-"ahA" = (
+"ahO" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ahP" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -3812,123 +3977,63 @@
icon_state = "1-2";
pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"ahB" = (
+"ahQ" = (
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"ahC" = (
+"ahR" = (
+/obj/machinery/door/firedoor,
/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "conference"
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahD" = (
-/obj/structure/grille,
-/obj/item/weapon/material/shard,
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahE" = (
-/obj/structure/grille/broken,
-/obj/item/weapon/material/shard{
- icon_state = "medium"
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "conference"
},
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/window/reinforced/polarized{
+ id = "conference"
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahF" = (
-/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/civ)
-"ahG" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahH" = (
-/obj/structure/grille,
-/obj/item/weapon/material/shard{
- icon_state = "small"
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahI" = (
-/obj/item/stack/rods,
-/obj/item/weapon/material/shard{
- icon_state = "small"
- },
-/obj/machinery/door/firedoor,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahJ" = (
-/obj/structure/grille/broken,
-/obj/item/weapon/material/shard{
- icon_state = "medium"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ahK" = (
-/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/civ)
-"ahL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "conference"
},
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"ahM" = (
+"ahS" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"ahT" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/civ)
+"ahU" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ahN" = (
+"ahV" = (
/obj/machinery/atmospherics/unary/freezer{
dir = 2;
icon_state = "freezer"
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ahO" = (
+"ahW" = (
/obj/machinery/light{
dir = 1
},
@@ -3944,29 +4049,29 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ahP" = (
+"ahX" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ahQ" = (
+"ahY" = (
/obj/machinery/computer/cryopod/robot{
pixel_y = 30
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ahR" = (
+"ahZ" = (
/obj/machinery/drone_fabricator,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ahS" = (
+"aia" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ahT" = (
+"aib" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -3975,12 +4080,38 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ahU" = (
+"aic" = (
/obj/machinery/cryopod/robot,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ahV" = (
+"aid" = (
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"aie" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"aif" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"aig" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "Maintenance - Atmospherics"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"aih" = (
+/obj/structure/closet,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"aii" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -3988,7 +4119,22 @@
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"ahW" = (
+"aij" = (
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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{
icon_state = "intact";
dir = 5
@@ -4002,7 +4148,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahX" = (
+"aim" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -4013,7 +4159,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahY" = (
+"ain" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -4024,7 +4170,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ahZ" = (
+"aio" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
@@ -4035,7 +4181,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aia" = (
+"aip" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
@@ -4048,7 +4194,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aib" = (
+"aiq" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
@@ -4059,7 +4205,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aic" = (
+"air" = (
/obj/machinery/atmospherics/pipe/zpipe/down/yellow{
dir = 8;
pixel_x = 0
@@ -4071,7 +4217,7 @@
/obj/structure/lattice/catwalk,
/turf/simulated/open,
/area/engineering/atmos)
-"aid" = (
+"ais" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4083,21 +4229,21 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aie" = (
+"ait" = (
/obj/structure/bed,
/obj/structure/sign/nosmoking_1{
pixel_y = 32
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aif" = (
+"aiu" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/newscaster{
pixel_x = 27
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aig" = (
+"aiv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -4116,34 +4262,61 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aih" = (
-/obj/item/stack/tile/floor,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/reagent_dispensers/watertank,
+"aiw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"aii" = (
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering)
-"aij" = (
-/obj/structure/reagent_dispensers/extinguisher,
+/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/blue{
+ icon_state = "corner_white";
+ 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/blue{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aik" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/machinery/camera/network/prison{
- c_tag = "Security - Communal Brig Aft";
- dir = 1
+/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{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
},
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"ail" = (
+/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)
+"aiD" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -4152,7 +4325,7 @@
temperature = 278
},
/area/security/investigations)
-"aim" = (
+"aiE" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/sec,
/turf/simulated/floor/tiled/dark{
@@ -4160,7 +4333,7 @@
temperature = 278
},
/area/security/investigations)
-"ain" = (
+"aiF" = (
/obj/structure/plasticflaps/airtight,
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
@@ -4172,7 +4345,7 @@
temperature = 278
},
/area/security/investigations)
-"aio" = (
+"aiG" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -4183,7 +4356,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/security/investigations)
-"aip" = (
+"aiH" = (
/obj/machinery/firealarm/north,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
@@ -4203,7 +4376,7 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"aiq" = (
+"aiI" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
icon_state = "up-scrubbers";
@@ -4226,10 +4399,10 @@
},
/turf/simulated/floor/plating,
/area/security/investigations)
-"air" = (
+"aiJ" = (
/turf/simulated/wall,
/area/security/investigations)
-"ais" = (
+"aiK" = (
/obj/item/stack/tile/wood,
/obj/effect/decal/cleanable/cobweb2{
icon_state = "cobweb1"
@@ -4237,56 +4410,29 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"ait" = (
+"aiL" = (
/obj/item/weapon/storage/toolbox,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"aiu" = (
+"aiM" = (
/obj/machinery/door/airlock/maintenance,
/obj/machinery/door/firedoor,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"aiv" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aiw" = (
-/obj/item/weapon/material/shard,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"aix" = (
-/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
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aiy" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"aiz" = (
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"aiA" = (
+"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{
icon_state = "warningcorner";
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"aiB" = (
+"aiQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 5
},
@@ -4296,7 +4442,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"aiC" = (
+"aiR" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
/obj/machinery/meter,
/obj/effect/floor_decal/industrial/warning{
@@ -4305,7 +4451,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"aiD" = (
+"aiS" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 9
},
@@ -4315,7 +4461,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"aiE" = (
+"aiT" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
@@ -4323,7 +4469,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"aiF" = (
+"aiU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
@@ -4333,37 +4479,65 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/drone_fabrication)
-"aiG" = (
+"aiV" = (
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aiH" = (
+"aiW" = (
/obj/machinery/computer/drone_control,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aiI" = (
+"aiX" = (
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aiJ" = (
+"aiY" = (
/obj/machinery/recharge_station,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aiK" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/atmos_control)
-"aiL" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+"aiZ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/wall/r_wall,
+/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"aiM" = (
+"aja" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"ajb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance Access";
+ req_access = null;
+ req_one_access = list(11,24)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"ajc" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/atmos_control)
+"ajd" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -4383,7 +4557,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiN" = (
+"aje" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -22
@@ -4398,7 +4572,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiO" = (
+"ajf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -4412,7 +4586,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiP" = (
+"ajg" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
icon_state = "intact";
dir = 5
@@ -4431,7 +4605,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiQ" = (
+"ajh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -4446,7 +4620,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiR" = (
+"aji" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 4
},
@@ -4455,7 +4629,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiS" = (
+"ajj" = (
/obj/machinery/atmospherics/pipe/simple/visible/red{
dir = 4
},
@@ -4466,7 +4640,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"aiT" = (
+"ajk" = (
/obj/machinery/atmospherics/pipe/zpipe/down/red{
icon_state = "down";
dir = 8
@@ -4474,7 +4648,7 @@
/obj/structure/lattice/catwalk,
/turf/simulated/open,
/area/engineering/atmos)
-"aiU" = (
+"ajl" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -4485,10 +4659,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aiV" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/security_starboard)
-"aiW" = (
+"ajm" = (
/obj/machinery/light/small{
dir = 8
},
@@ -4499,7 +4670,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aiX" = (
+"ajn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -4511,7 +4682,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aiY" = (
+"ajo" = (
/obj/machinery/door/airlock/glass_security{
name = "Solitary Confinement 2";
req_access = list(2)
@@ -4525,23 +4696,47 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/brig)
-"aiZ" = (
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"aja" = (
-/turf/simulated/wall,
+"ajp" = (
+/obj/effect/floor_decal/corner/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)
-"ajb" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small{
+"ajq" = (
+/obj/effect/floor_decal/corner/blue/full{
+ icon_state = "corner_white_full";
dir = 4
},
-/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"ajc" = (
+/area/security/main)
+"ajr" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/obj/structure/mirror{
+ pixel_x = -32
+ },
+/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/window/reinforced{
icon_state = "rwindow";
dir = 1
@@ -4554,7 +4749,7 @@
temperature = 278
},
/area/security/investigations)
-"ajd" = (
+"aju" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 1
@@ -4567,7 +4762,7 @@
temperature = 278
},
/area/security/investigations)
-"aje" = (
+"ajv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -4577,7 +4772,7 @@
temperature = 278
},
/area/security/investigations)
-"ajf" = (
+"ajw" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -4598,7 +4793,7 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"ajg" = (
+"ajx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -4612,7 +4807,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
-"ajh" = (
+"ajy" = (
/obj/structure/closet/crate{
name = "Case Folders Crate"
},
@@ -4628,21 +4823,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled,
/area/security/investigations)
-"aji" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/maintenance/civ)
-"ajj" = (
+"ajz" = (
/obj/item/stack/material/wood,
/obj/random/loot,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"ajk" = (
+"ajA" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"ajl" = (
+"ajB" = (
/obj/structure/grille/broken,
/obj/item/stack/rods,
/obj/item/weapon/material/shard{
@@ -4654,24 +4845,18 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"ajm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/item/stack/rods,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ajn" = (
+"ajC" = (
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ajo" = (
+"ajD" = (
/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ajp" = (
+"ajE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ajq" = (
+"ajF" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -4687,7 +4872,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ajr" = (
+"ajG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4704,7 +4889,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ajs" = (
+"ajH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4716,19 +4901,15 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ajt" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"ajI" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/plating,
-/area/maintenance/engineering)
-"aju" = (
+/area/engineering/drone_fabrication)
+"ajJ" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/light{
dir = 4;
@@ -4741,39 +4922,31 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ajv" = (
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"ajw" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"ajx" = (
-/obj/machinery/light{
- dir = 1;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"ajy" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"ajz" = (
+"ajK" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"ajA" = (
+"ajL" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/storage)
+"ajM" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance Access";
+ req_access = list(24)
+ },
+/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)
@@ -4789,7 +4962,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos)
-"ajB" = (
+"ajO" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -4807,7 +4980,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos)
-"ajC" = (
+"ajP" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -4821,26 +4994,26 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos)
-"ajD" = (
+"ajQ" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos/storage)
-"ajE" = (
+"ajR" = (
/turf/simulated/wall/r_wall,
/area/security/armoury)
-"ajF" = (
+"ajS" = (
/obj/structure/table/standard,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/simulated/floor/plating,
/area/security/brig)
-"ajG" = (
+"ajT" = (
/obj/item/weapon/stool,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/plating,
/area/security/brig)
-"ajH" = (
+"ajU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -4855,104 +5028,117 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/security/brig)
-"ajI" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ajJ" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"ajK" = (
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"ajL" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"ajM" = (
-/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/research{
- name = "Xenoflora Research";
- req_access = list(55)
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology/xenoflora)
-"ajN" = (
-/obj/machinery/door/firedoor,
+"ajV" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
dir = 1
},
/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"ajO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"ajP" = (
-/obj/structure/closet/secure_closet/security,
-/obj/effect/floor_decal/industrial/outline/yellow,
+/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/blue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/door/firedoor/multi_tile,
/turf/simulated/floor/tiled/dark,
/area/security/main)
-"ajQ" = (
+"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/blue{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "rwindow";
+ 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)
+ },
+/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/dark{
name = "cooled dark floor";
temperature = 278
},
/area/security/investigations)
-"ajR" = (
+"akb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
/turf/simulated/floor/tiled/dark{
name = "cooled dark floor";
temperature = 278
},
/area/security/investigations)
-"ajS" = (
+"akc" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -4982,7 +5168,7 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"ajT" = (
+"akd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/structure/cable/green{
d1 = 1;
@@ -4995,26 +5181,34 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"ajU" = (
-/obj/structure/table/rack{
- dir = 1
+"ake" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
},
-/obj/item/stack/rods{
- amount = 50
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/area/outpost/mining_main/eva)
-"ajV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/investigations)
+"akf" = (
/obj/structure/table/wood,
-/turf/simulated/floor/plating,
+/turf/simulated/floor/wood,
/area/maintenance/civ)
-"ajW" = (
+"akg" = (
/obj/item/stack/tile/wood,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"ajX" = (
+"akh" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -5023,39 +5217,20 @@
},
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"ajY" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"ajZ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aka" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"akb" = (
-/obj/structure/table/standard,
-/obj/machinery/reagentgrinder,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+"aki" = (
+/obj/structure/safe/station,
+/obj/machinery/light/small/emergency{
+ dir = 1
},
-/obj/effect/floor_decal/corner/mauve/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"akc" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"akj" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"akk" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -5064,25 +5239,25 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"akd" = (
+"akl" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 6
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ake" = (
+"akm" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black{
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"akf" = (
+"akn" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"akg" = (
+"ako" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5096,7 +5271,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"akh" = (
+"akp" = (
/obj/machinery/door/airlock/maintenance{
name = "Drone Fabrication/Engine Waste Handling";
req_one_access = list(11,24)
@@ -5116,7 +5291,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"aki" = (
+"akq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5131,7 +5306,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"akj" = (
+"akr" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5145,14 +5320,14 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"akk" = (
+"aks" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"akl" = (
+"akt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5172,7 +5347,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"akm" = (
+"aku" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5185,7 +5360,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"akn" = (
+"akv" = (
/obj/machinery/door/airlock/maintenance{
name = "Drone Fabrication";
req_one_access = list(11,24)
@@ -5205,7 +5380,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ako" = (
+"akw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5220,52 +5395,36 @@
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"akp" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Atmospherics Maintenance Access";
- req_access = list(24)
+"akx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
},
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/engineering/atmos)
-"akq" = (
-/obj/structure/cable{
- d1 = 4;
d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "1-8"
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"akr" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Atmospherics Maintenance Access";
- req_access = null;
- req_one_access = list(11,24)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
+"aky" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/phoron,
/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"aks" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/area/engineering/storage)
+"akz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"akt" = (
+/area/engineering/storage)
+"akA" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"akB" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -5278,7 +5437,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"aku" = (
+"akC" = (
/obj/machinery/power/sensor{
name = "Powernet Sensor - Atmospherics Subgrid";
name_tag = "Atmospherics Subgrid"
@@ -5294,7 +5453,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"akv" = (
+"akD" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 4
@@ -5304,7 +5463,7 @@
/obj/item/device/suit_cooling_unit,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"akw" = (
+"akE" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -5317,7 +5476,7 @@
/obj/item/weapon/storage/briefcase/inflatable,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"akx" = (
+"akF" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -5336,7 +5495,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aky" = (
+"akG" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -5355,7 +5514,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"akz" = (
+"akH" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 8
@@ -5363,11 +5522,11 @@
/obj/structure/window/reinforced,
/turf/simulated/open,
/area/engineering/atmos/storage)
-"akA" = (
+"akI" = (
/obj/structure/window/reinforced,
/turf/simulated/open,
/area/engineering/atmos/storage)
-"akB" = (
+"akJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/light{
icon_state = "tube1";
@@ -5382,7 +5541,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"akC" = (
+"akK" = (
/obj/machinery/newscaster{
pixel_x = 27
},
@@ -5392,7 +5551,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"akD" = (
+"akL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5403,116 +5562,93 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"akE" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 2;
- name = "Security";
- sortType = "Security"
+"akM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ c_tag = "Security - Corridor Camera 2";
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"akF" = (
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/camera/network/research{
- c_tag = "Research - Chemistry Laboratory";
- dir = 1;
- network = list("Research")
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"akG" = (
-/obj/structure/fireaxecabinet{
- pixel_x = -32
- },
-/obj/structure/closet/crate/extinguisher_catridges,
-/turf/simulated/floor/tiled,
-/area/engineering/atmos/storage)
-"akH" = (
-/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)
-"akI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "E.V.A.";
- req_one_access = list(18)
- },
-/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"
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"akJ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"akK" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"akL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"akM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
"akN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/security/security_office)
+"akO" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"akP" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"akQ" = (
+/obj/effect/floor_decal/corner/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/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{
icon_state = "morgue1";
dir = 1
@@ -5522,7 +5658,7 @@
temperature = 278
},
/area/security/investigations)
-"akO" = (
+"akX" = (
/obj/structure/morgue{
icon_state = "morgue1";
dir = 1
@@ -5536,7 +5672,15 @@
temperature = 278
},
/area/security/investigations)
-"akP" = (
+"akY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/security/investigations)
+"akZ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -5551,14 +5695,14 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
-"akQ" = (
+"ala" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"akR" = (
+"alb" = (
/obj/structure/stairs/east,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -5566,12 +5710,12 @@
},
/turf/simulated/floor/tiled,
/area/security/investigations)
-"akS" = (
+"alc" = (
/obj/item/stack/tile/wood,
/obj/effect/decal/cleanable/generic,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"akT" = (
+"ald" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/flag/hegemony{
@@ -5580,7 +5724,7 @@
},
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"akU" = (
+"ale" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -5594,26 +5738,57 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"akV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"akW" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"akX" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/random/junk,
-/turf/simulated/floor/tiled,
-/area/maintenance/civ)
-"akY" = (
+"alf" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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/tiled/dark,
+/area/security/nuke_storage)
+"alg" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"alh" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"ali" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"alj" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/random/finances,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"alk" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_room)
-"akZ" = (
+"all" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1;
name = "Waste Pump"
@@ -5630,7 +5805,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ala" = (
+"alm" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 5
},
@@ -5644,7 +5819,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"alb" = (
+"aln" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
},
@@ -5661,7 +5836,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"alc" = (
+"alo" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -5670,7 +5845,7 @@
/obj/structure/cable,
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"ald" = (
+"alp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5679,7 +5854,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"ale" = (
+"alq" = (
/obj/machinery/door/airlock/maintenance{
req_access = list(11);
req_one_access = null
@@ -5689,7 +5864,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/maintenance/atmos_control)
-"alf" = (
+"alr" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -5697,7 +5872,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"alg" = (
+"als" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -5707,7 +5882,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"alh" = (
+"alt" = (
/obj/machinery/power/smes/buildable{
charge = 2e+006;
input_attempt = 1;
@@ -5717,24 +5892,27 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/maintenance/atmos_control)
-"ali" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"alj" = (
+"alu" = (
+/obj/structure/fireaxecabinet{
+ pixel_x = -32
+ },
+/obj/structure/closet/crate/extinguisher_catridges,
+/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)
-"alk" = (
+"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)
-"all" = (
+"alx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 8
@@ -5750,7 +5928,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"alm" = (
+"aly" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -5758,7 +5936,7 @@
/obj/machinery/pipedispenser,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aln" = (
+"alz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -5766,14 +5944,14 @@
/obj/machinery/pipedispenser/disposal,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"alo" = (
+"alA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 9
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"alp" = (
+"alB" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -5781,7 +5959,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"alq" = (
+"alC" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -5794,15 +5972,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"alr" = (
+"alD" = (
/obj/structure/closet/bombclosetsecurity,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"als" = (
+"alE" = (
/obj/structure/closet/l3closet/general,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alt" = (
+"alF" = (
/obj/machinery/light{
dir = 1
},
@@ -5822,7 +6000,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alu" = (
+"alG" = (
/obj/structure/table/rack,
/obj/item/device/magnetic_lock/security{
pixel_x = -3;
@@ -5838,7 +6016,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alv" = (
+"alH" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/head/helmet/riot,
@@ -5859,14 +6037,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alw" = (
+"alI" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 5;
pixel_y = 22
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alx" = (
+"alJ" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 5;
pixel_y = 22
@@ -5880,7 +6058,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aly" = (
+"alK" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Weaponry (Laser Rifle)";
req_access = list(3)
@@ -5889,7 +6067,7 @@
/obj/item/weapon/gun/energy/rifle/laser,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"alz" = (
+"alL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -5899,66 +6077,113 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"alA" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"alB" = (
-/obj/random/junk,
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"alC" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/engineering)
-"alD" = (
+"alM" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Security";
+ sortType = "Security"
+ },
/turf/simulated/floor/tiled,
-/area/security/main)
-"alE" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"alF" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
+/area/security/brig)
+"alN" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access = list(63)
},
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/item/device/destTagger,
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"alG" = (
-/obj/structure/table/standard,
-/obj/structure/cable/green,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"alH" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"alI" = (
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"alO" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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/chair/office/dark,
+/obj/effect/floor_decal/corner/blue/full{
+ icon_state = "corner_white_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/weapon/storage/fancy/cigarettes/dromedaryco,
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_office)
+"alS" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/folder/sec,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/security_office)
+"alT" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/corner/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)
+"alW" = (
/obj/machinery/door/airlock/security{
name = "Evidence Storage";
req_access = list(1)
@@ -5971,7 +6196,7 @@
temperature = 278
},
/area/security/investigations)
-"alJ" = (
+"alX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Investigations Division";
@@ -5987,7 +6212,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/investigations)
-"alK" = (
+"alY" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -6001,7 +6226,7 @@
},
/turf/simulated/floor/plating,
/area/security/investigations)
-"alL" = (
+"alZ" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -6014,16 +6239,12 @@
},
/turf/simulated/floor/plating,
/area/security/investigations)
-"alM" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"alN" = (
+"ama" = (
/obj/item/weapon/stool/padded,
/obj/item/weapon/material/shard,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"alO" = (
+"amb" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -6034,7 +6255,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"alP" = (
+"amc" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -6042,7 +6263,7 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/civ)
-"alQ" = (
+"amd" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -6054,12 +6275,85 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/civ)
-"alR" = (
-/obj/effect/decal/cleanable/generic,
-/obj/random/junk,
+"ame" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"amf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"amg" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"amh" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/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/civ)
-"alS" = (
+/area/maintenance/security_starboard)
+"amj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/security_starboard)
+"amk" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aml" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/structure/reagent_dispensers/extinguisher,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"amm" = (
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for engine core.";
id = "EngineVent";
@@ -6071,7 +6365,7 @@
/obj/structure/window/basic,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"alT" = (
+"amn" = (
/obj/machinery/atmospherics/pipe/simple/visible/black,
/obj/machinery/door/blast/regular{
dir = 4;
@@ -6082,7 +6376,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"alU" = (
+"amo" = (
/obj/machinery/door/blast/regular{
dir = 4;
icon_state = "pdoor1";
@@ -6092,7 +6386,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_waste)
-"alV" = (
+"amp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6107,87 +6401,97 @@
},
/turf/simulated/floor/plating,
/area/engineering/drone_fabrication)
-"alW" = (
+"amq" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"alX" = (
+"amr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"alY" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/storage)
-"alZ" = (
-/obj/machinery/power/emitter,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"ama" = (
-/obj/structure/closet/crate,
-/obj/item/stack/material/phoron{
- amount = 25
+"ams" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
},
/turf/simulated/floor/plating,
/area/engineering/storage)
-"amb" = (
-/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 = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/atmos_control)
-"amc" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/phoron,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"amd" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"ame" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"amf" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+"amt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
},
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"amg" = (
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"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)
+"amv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"amw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"amx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"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)
-"amh" = (
+"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)
-"ami" = (
+"amB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -6203,7 +6507,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"amj" = (
+"amC" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -6211,7 +6515,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"amk" = (
+"amD" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -6223,7 +6527,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aml" = (
+"amE" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -6234,7 +6538,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"amm" = (
+"amF" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access = list(12,24)
@@ -6250,7 +6554,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"amn" = (
+"amG" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -6261,7 +6565,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amo" = (
+"amH" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
d1 = 4;
@@ -6274,7 +6578,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amp" = (
+"amI" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -6290,20 +6594,20 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amq" = (
+"amJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amr" = (
+"amK" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ams" = (
+"amL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6311,7 +6615,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amt" = (
+"amM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6325,7 +6629,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amu" = (
+"amN" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -6334,10 +6638,10 @@
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"amv" = (
+"amO" = (
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"amw" = (
+"amP" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/head/helmet/riot,
@@ -6357,7 +6661,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"amx" = (
+"amQ" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Weaponry (Ion Rifle)";
req_access = list(3)
@@ -6365,100 +6669,91 @@
/obj/item/weapon/gun/energy/ionrifle,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"amy" = (
+"amR" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/wall/r_wall,
/area/maintenance/security_starboard)
-"amz" = (
+"amS" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"amT" = (
+/obj/structure/coatrack,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"amU" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced,
+/obj/item/weapon/paper_bin,
/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_access = null;
- req_one_access = list(31,48)
+/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/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"amA" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
+/obj/item/weapon/folder/sec,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/dark,
+/area/security/security_office)
+"amW" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
},
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"amB" = (
-/obj/machinery/door/airlock/hatch{
- name = "Disposals Maintenance";
- req_one_access = list(12,50)
- },
-/obj/structure/disposalpipe/segment,
+/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/weapon/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/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/disposal)
-"amC" = (
-/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)
-"amD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/power/apc{
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"amZ" = (
+/obj/machinery/alarm{
dir = 8;
- name = "west bump";
- pixel_x = -24
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
+/obj/structure/bed/chair{
+ dir = 8
},
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"amE" = (
-/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,
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"amF" = (
+/area/security/security_office)
+"ana" = (
+/turf/simulated/wall,
+/area/security/security_office)
+"anb" = (
/obj/structure/stairs/north,
/turf/simulated/floor/tiled,
/area/security/brig)
-"amG" = (
+"anc" = (
/obj/structure/stairs/north,
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"amH" = (
+"and" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
@@ -6466,19 +6761,21 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/brig)
-"amI" = (
-/obj/structure/track{
- icon_state = "track12"
+"ane" = (
+/obj/structure/noticeboard{
+ pixel_x = 0;
+ pixel_y = 32
},
-/obj/machinery/light/spot/weak{
- icon_state = "tube_empty";
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 1
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"amJ" = (
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"anf" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
@@ -6492,7 +6789,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/brig)
-"amK" = (
+"ang" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
@@ -6504,7 +6801,7 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled,
/area/security/brig)
-"amL" = (
+"anh" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
@@ -6520,13 +6817,17 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"amM" = (
+"ani" = (
/obj/structure/table/wood,
/obj/item/stack/material/wood,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"amN" = (
+"anj" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"ank" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -6538,11 +6839,11 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"amO" = (
+"anl" = (
/obj/item/stack/rods,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"amP" = (
+"anm" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -6552,51 +6853,111 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/civ)
-"amQ" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
+"ann" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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/tiled/dark,
+/area/security/nuke_storage)
+"ano" = (
+/obj/machinery/porta_turret/stationary,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"anp" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"anq" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
+/obj/machinery/light/small/emergency{
+ icon_state = "bulb1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"anr" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"amR" = (
+/area/maintenance/security_starboard)
+"ans" = (
/obj/machinery/light/spot,
/turf/simulated/floor/asteroid/ash/rocky,
/area/bridge)
-"amS" = (
+"ant" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amT" = (
+"anu" = (
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amU" = (
+"anv" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = 30
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amV" = (
+"anw" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black{
icon_state = "map";
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amW" = (
+"anx" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
},
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amX" = (
+"any" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 10
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amY" = (
+"anz" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for the engine control room blast doors.";
@@ -6609,10 +6970,10 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"amZ" = (
+"anA" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_smes)
-"ana" = (
+"anB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6621,35 +6982,46 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/engine_smes)
-"anb" = (
+"anC" = (
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"anc" = (
-/obj/structure/closet/crate,
-/obj/item/weapon/circuitboard/smes,
-/obj/item/weapon/circuitboard/smes,
-/obj/item/weapon/smes_coil,
-/obj/item/weapon/smes_coil,
-/obj/item/weapon/smes_coil/super_capacity,
-/obj/item/weapon/smes_coil/super_capacity,
-/obj/item/weapon/smes_coil/super_io,
-/obj/item/weapon/smes_coil/super_io,
+"anD" = (
+/obj/structure/closet/crate/solar,
+/obj/machinery/light{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/engineering/storage)
-"and" = (
+"anE" = (
/turf/simulated/floor/plating,
/area/engineering/storage)
-"ane" = (
-/obj/machinery/shieldgen,
+"anF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/engineering/storage)
-"anf" = (
+"anG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"anH" = (
+/obj/machinery/light{
+ dir = 4;
+ status = 0
+ },
+/obj/machinery/power/port_gen/pacman,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"anI" = (
/turf/simulated/wall/r_wall,
/area/engineering/engine_monitoring)
-"ang" = (
+"anJ" = (
/turf/simulated/open,
/area/turbolift/engineering_station)
-"anh" = (
+"anK" = (
/obj/structure/dispenser/oxygen{
phorontanks = 10
},
@@ -6660,7 +7032,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"ani" = (
+"anL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -6673,17 +7045,17 @@
/obj/machinery/space_heater,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"anj" = (
+"anM" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"ank" = (
+"anN" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"anl" = (
+"anO" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 2;
name = "Atmospherics";
@@ -6691,7 +7063,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"anm" = (
+"anP" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -6699,7 +7071,7 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"ann" = (
+"anQ" = (
/obj/machinery/door/airlock/maintenance{
name = "Firefighting equipment";
req_access = list(12)
@@ -6707,13 +7079,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ano" = (
+"anR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/rack,
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"anp" = (
+"anS" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/storage/vest/heavy/officer,
/obj/item/clothing/suit/storage/vest/heavy/officer,
@@ -6721,14 +7093,14 @@
/obj/item/clothing/suit/storage/vest/heavy/officer,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"anq" = (
+"anT" = (
/obj/structure/table/rack,
/obj/item/weapon/reagent_containers/spray/pepper,
/obj/item/weapon/reagent_containers/spray/pepper,
/obj/item/weapon/reagent_containers/spray/pepper,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"anr" = (
+"anU" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -6736,7 +7108,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ans" = (
+"anV" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/armor/riot,
/obj/item/clothing/head/helmet/riot,
@@ -6759,11 +7131,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ant" = (
+"anW" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"anu" = (
+"anX" = (
/obj/machinery/light/small/emergency{
icon_state = "bulb1";
dir = 4
@@ -6776,66 +7148,76 @@
/obj/item/weapon/gun/energy/gun,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"anv" = (
+"anY" = (
+/obj/random/junk,
+/obj/structure/reagent_dispensers/extinguisher,
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"anZ" = (
+/obj/structure/bed/chair,
+/obj/item/device/radio/intercom{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"aoa" = (
/obj/structure/table/standard,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/machinery/newscaster{
- pixel_y = 32
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/paper_bin,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"anw" = (
-/turf/simulated/wall,
-/area/rnd/misc_lab)
-"anx" = (
+/area/security/security_office)
+"aob" = (
+/obj/item/weapon/handcuffs,
/obj/structure/table/standard,
-/obj/structure/noticeboard{
- pixel_x = -32
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"any" = (
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"anz" = (
-/obj/effect/floor_decal/industrial/warning/corner{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/supply{
- c_tag = "Cargo - Disposals, Upper";
+/turf/simulated/floor/tiled/dark,
+/area/security/security_office)
+"aoc" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"anA" = (
-/obj/machinery/requests_console{
- department = "Hydroponics";
- departmentType = 2;
- name = "Hydroponics Requests Console";
- pixel_x = 0;
- pixel_y = 30
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
},
+/obj/item/weapon/newspaper,
+/obj/item/weapon/reagent_containers/food/drinks/coffee,
/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"anB" = (
-/obj/machinery/light{
+/area/security/security_office)
+"aod" = (
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
+/obj/item/weapon/paper_bin,
/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"anC" = (
+/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/brig)
-"anD" = (
+"aog" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 8
@@ -6858,7 +7240,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"anE" = (
+"aoh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -6875,7 +7257,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"anF" = (
+"aoi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 9
@@ -6895,7 +7277,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"anG" = (
+"aoj" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -6907,13 +7289,13 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"anH" = (
+"aok" = (
/obj/structure/grille/broken,
/obj/item/weapon/material/shard,
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"anI" = (
+"aol" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -6922,15 +7304,54 @@
},
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"anJ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"anK" = (
+"aom" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/random/finances,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aon" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aoo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aop" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aoq" = (
/turf/simulated/wall/r_wall,
/area/bridge)
-"anL" = (
+"aor" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -6959,7 +7380,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anM" = (
+"aos" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -6985,7 +7406,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anN" = (
+"aot" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -7009,7 +7430,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anO" = (
+"aou" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -7033,7 +7454,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anP" = (
+"aov" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -7059,7 +7480,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anQ" = (
+"aow" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -7088,10 +7509,10 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"anR" = (
+"aox" = (
/turf/simulated/mineral,
/area/mine/unexplored)
-"anS" = (
+"aoy" = (
/obj/machinery/atmospherics/omni/filter{
tag_east = 4;
tag_north = 2;
@@ -7102,14 +7523,14 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"anT" = (
+"aoz" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
icon_state = "map";
dir = 1
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"anU" = (
+"aoA" = (
/obj/machinery/atmospherics/omni/filter{
tag_east = 0;
tag_north = 2;
@@ -7120,7 +7541,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"anV" = (
+"aoB" = (
/obj/machinery/atmospherics/binary/pump{
dir = 1
},
@@ -7131,7 +7552,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"anW" = (
+"aoC" = (
/obj/machinery/power/smes/buildable{
charge = 1e+007;
cur_coils = 4;
@@ -7147,7 +7568,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_smes)
-"anX" = (
+"aoD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7159,7 +7580,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"anY" = (
+"aoE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/lights/mixed,
/obj/item/device/radio/intercom{
@@ -7174,7 +7595,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"anZ" = (
+"aoF" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
@@ -7195,7 +7616,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aoa" = (
+"aoG" = (
/obj/structure/table/reinforced,
/obj/item/stack/cable_coil{
pixel_x = 3;
@@ -7211,7 +7632,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aob" = (
+"aoH" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -7220,7 +7641,7 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/engine_smes)
-"aoc" = (
+"aoI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/newscaster{
@@ -7228,44 +7649,27 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aod" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aoJ" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 25
},
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aoe" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+"aoK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aof" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
+"aoL" = (
+/obj/machinery/power/emitter,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aog" = (
-/obj/machinery/shieldwallgen,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aoh" = (
+"aoM" = (
/obj/machinery/suit_cycler/engineering,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aoi" = (
+"aoN" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -7281,7 +7685,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aoj" = (
+"aoO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -7289,21 +7693,21 @@
/obj/machinery/portable_atmospherics/powered/pump/filled,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aok" = (
+"aoP" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aol" = (
+"aoQ" = (
/obj/structure/table/standard,
/obj/item/device/pipe_painter,
/obj/item/weapon/pipewrench,
/obj/item/weapon/pipewrench,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aom" = (
+"aoR" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -7320,7 +7724,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"aon" = (
+"aoS" = (
/obj/machinery/requests_console{
department = "Atmospherics";
departmentType = 4;
@@ -7338,7 +7742,7 @@
/obj/structure/closet/wardrobe/atmospherics_yellow,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aoo" = (
+"aoT" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -7353,7 +7757,7 @@
/obj/item/device/flashlight/heavy,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aop" = (
+"aoU" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -7365,7 +7769,7 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aoq" = (
+"aoV" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -7376,20 +7780,20 @@
/obj/item/device/radio/off,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aor" = (
+"aoW" = (
/obj/structure/closet/hydrant{
pixel_x = -32
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aos" = (
+"aoX" = (
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aot" = (
+"aoY" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aou" = (
+"aoZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -7404,7 +7808,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aov" = (
+"apa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -7423,7 +7827,7 @@
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aow" = (
+"apb" = (
/obj/structure/table/rack,
/obj/item/clothing/mask/gas{
pixel_x = -3;
@@ -7445,7 +7849,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aox" = (
+"apc" = (
/obj/structure/table/rack,
/obj/item/weapon/storage/box/seccarts{
pixel_x = -3;
@@ -7458,7 +7862,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoy" = (
+"apd" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/cable/green{
d1 = 2;
@@ -7467,7 +7871,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoz" = (
+"ape" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Armoury Section";
req_access = list(3)
@@ -7480,7 +7884,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoA" = (
+"apf" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -7488,11 +7892,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoB" = (
+"apg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoC" = (
+"aph" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Weaponry (Shotgun)";
req_access = list(3)
@@ -7501,7 +7905,7 @@
/obj/item/weapon/gun/projectile/shotgun/pump,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aoD" = (
+"api" = (
/obj/machinery/light/small{
dir = 8
},
@@ -7512,7 +7916,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aoE" = (
+"apj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -7521,7 +7925,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aoF" = (
+"apk" = (
/obj/machinery/door/airlock/glass_security{
name = "Solitary Confinement 1";
req_access = list(2)
@@ -7535,7 +7939,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/brig)
-"aoG" = (
+"apl" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -7547,7 +7951,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aoH" = (
+"apm" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -7558,65 +7962,91 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aoI" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+"apn" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/donut,
+/obj/machinery/newscaster{
+ pixel_x = -28
},
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aoJ" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"apo" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
},
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
+/obj/effect/floor_decal/corner/blue/full,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aoK" = (
-/obj/structure/closet/crate/solar,
-/obj/machinery/light{
+/turf/simulated/floor/tiled/dark,
+/area/security/security_office)
+"app" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/folder/sec,
+/obj/item/weapon/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{
+ icon_state = "rwindow";
dir = 8
},
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aoM" = (
-/obj/machinery/vending/hydroseeds{
- prices = list();
- restock_items = 1
+/obj/structure/table/standard,
+/obj/item/weapon/folder/sec,
+/obj/item/weapon/pen,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"aoN" = (
+/area/security/security_office)
+"apr" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ icon_state = "corner_white_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/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"aoO" = (
-/obj/structure/table/standard,
-/obj/random/loot,
-/obj/machinery/light/small/emergency{
+/obj/item/weapon/material/ashtray,
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"apt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
dir = 1
},
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"aoP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Research Division Maintenance";
- req_access = list(47);
- req_one_access = null
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/rnd/misc_lab)
-"aoQ" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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{
icon_state = "map-scrubbers";
@@ -7630,44 +8060,43 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aoR" = (
+"apv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aoS" = (
+"apw" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aoT" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "mining_east_airlock";
- name = "exterior access button";
- pixel_x = 25;
+"apx" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30;
pixel_y = 0
},
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
},
-/area/outpost/mining_main/eva)
-"aoU" = (
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"apy" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/wood,
/area/maintenance/civ)
-"aoV" = (
+"apz" = (
/obj/machinery/vending/boozeomat,
/turf/simulated/floor/plating,
/area/maintenance/civ)
-"aoW" = (
+"apA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7679,18 +8108,56 @@
req_access = list(12)
},
/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aoX" = (
-/obj/structure/largecrate/animal/cow,
-/turf/simulated/floor/plating,
/area/maintenance/civ)
-"aoY" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/civ)
-"aoZ" = (
+"apB" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/random/telecrystals{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/random/telecrystals{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/random/telecrystals,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"apC" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 10
+ },
+/obj/machinery/light/small/emergency,
+/obj/machinery/camera/motion/security{
+ c_tag = "Vault - Vault";
+ dir = 1;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"apD" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"apE" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"apF" = (
/obj/item/device/radio/intercom{
dir = 8;
name = "Station Intercom (General)";
@@ -7710,7 +8177,7 @@
/obj/machinery/papershredder,
/turf/simulated/floor/tiled,
/area/bridge)
-"apa" = (
+"apG" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 8
@@ -7722,7 +8189,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"apb" = (
+"apH" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -7730,7 +8197,7 @@
/obj/structure/bed/chair/comfy/blue,
/turf/simulated/floor/tiled,
/area/bridge)
-"apc" = (
+"apI" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -7740,7 +8207,7 @@
/obj/item/device/multitool,
/turf/simulated/floor/tiled,
/area/bridge)
-"apd" = (
+"apJ" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Command Deck Fore"
},
@@ -7759,7 +8226,7 @@
/obj/structure/table/reinforced,
/turf/simulated/floor/tiled,
/area/bridge)
-"ape" = (
+"apK" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -7768,7 +8235,7 @@
/obj/item/weapon/storage/firstaid/regular,
/turf/simulated/floor/tiled,
/area/bridge)
-"apf" = (
+"apL" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 1
@@ -7780,7 +8247,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"apg" = (
+"apM" = (
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
@@ -7801,29 +8268,29 @@
/obj/machinery/photocopier,
/turf/simulated/floor/tiled,
/area/bridge)
-"aph" = (
+"apN" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"api" = (
+"apO" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"apj" = (
+"apP" = (
/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"apk" = (
+"apQ" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
icon_state = "intact";
dir = 9
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"apl" = (
+"apR" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -7842,10 +8309,10 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"apm" = (
+"apS" = (
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"apn" = (
+"apT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7854,12 +8321,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"apo" = (
+"apU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"app" = (
+"apV" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -7874,66 +8341,88 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"apq" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"apW" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_capacity,
+/obj/item/weapon/smes_coil/super_io,
+/obj/item/weapon/smes_coil/super_io,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"apr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aps" = (
-/obj/machinery/light{
- dir = 4;
- status = 0
- },
-/obj/machinery/power/port_gen/pacman,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"apt" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- icon_state = "door_closed";
- name = "Hydroponics";
- req_access = list(35)
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
+"apX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"apY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"apZ" = (
+/obj/machinery/shieldgen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"aqa" = (
+/obj/machinery/shieldwallgen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"aqb" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/door/window/southleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospheric Hardsuits";
+ req_access = list(24)
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"apu" = (
+/area/engineering/atmos/storage)
+"aqc" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apv" = (
+"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)
-"apw" = (
+"aqe" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -7946,7 +8435,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apx" = (
+"aqf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7956,7 +8445,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apy" = (
+"aqg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -7965,7 +8454,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apz" = (
+"aqh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -7974,7 +8463,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apA" = (
+"aqi" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Locker Room";
req_access = list(24)
@@ -7988,7 +8477,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apB" = (
+"aqj" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 9
@@ -8001,7 +8490,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apC" = (
+"aqk" = (
/obj/machinery/camera/network/engineering{
c_tag = "Engineering - Atmospherics Locker Room";
dir = 8
@@ -8016,7 +8505,7 @@
/obj/item/weapon/reagent_containers/pill/antitox,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"apD" = (
+"aql" = (
/obj/structure/table/rack{
dir = 1
},
@@ -8028,18 +8517,18 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"apE" = (
+"aqm" = (
/obj/structure/closet,
/obj/item/clothing/head/ushanka,
/obj/machinery/light/small,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"apF" = (
+"aqn" = (
/obj/item/device/t_scanner,
/obj/structure/table/steel,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"apG" = (
+"aqo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -8053,20 +8542,20 @@
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"apH" = (
+"aqp" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apI" = (
+"aqq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apJ" = (
+"aqr" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -8080,7 +8569,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apK" = (
+"aqs" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Armoury Section";
req_access = list(3)
@@ -8094,7 +8583,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apL" = (
+"aqt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -8108,7 +8597,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apM" = (
+"aqu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -8117,98 +8606,110 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apN" = (
+"aqv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"apO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"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{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"aqz" = (
+/obj/machinery/camera/network/security{
+ c_tag = "Security - Security Office";
+ dir = 1;
+ network = list("Security","Armoury")
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/security/security_office)
+"aqA" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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/white,
-/area/medical/medbay)
-"apP" = (
-/obj/effect/floor_decal/corner/green,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"apQ" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/watertank,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"apR" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/spraybottles,
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"apS" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"apT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/security_office)
+"aqB" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
+/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/dark,
-/area/hydroponics)
-"apU" = (
-/obj/machinery/light,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"apV" = (
-/turf/simulated/wall,
-/area/crew_quarters/sleep/main)
-"apW" = (
-/obj/machinery/door/firedoor,
+/area/security/security_office)
+"aqC" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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/structure/window/reinforced{
icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/library)
-"apX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"apY" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor,
+/area/security/security_office)
+"aqE" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -8218,27 +8719,44 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"apZ" = (
+"aqF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aqa" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/fancy/vials,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+"aqG" = (
+/obj/effect/floor_decal/corner/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"aqb" = (
-/obj/machinery/vending/hydronutrients,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"aqc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aqH" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -27
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aqI" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 10
@@ -8247,7 +8765,7 @@
/obj/item/roller,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aqd" = (
+"aqJ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 10
@@ -8256,7 +8774,7 @@
/obj/item/bodybag/cryobag,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aqe" = (
+"aqK" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 10
@@ -8274,7 +8792,8 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aqf" = (
+"aqL" = (
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -8283,14 +8802,24 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aqg" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access = list(12)
+"aqM" = (
+/obj/machinery/door/airlock/vault/bolted{
+ req_access = list(20)
},
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"aqh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aqN" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"aqO" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -8316,7 +8845,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aqi" = (
+"aqP" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 9
@@ -8328,14 +8857,14 @@
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/tiled,
/area/bridge)
-"aqj" = (
+"aqQ" = (
/obj/effect/floor_decal/corner/yellow/full{
icon_state = "corner_white_full";
dir = 8
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aqk" = (
+"aqR" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -8343,21 +8872,21 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aql" = (
+"aqS" = (
/turf/simulated/floor/tiled,
/area/bridge)
-"aqm" = (
+"aqT" = (
/obj/item/device/radio/beacon,
/turf/simulated/floor/tiled,
/area/bridge)
-"aqn" = (
+"aqU" = (
/obj/effect/floor_decal/corner/lime/full{
icon_state = "corner_white_full";
dir = 1
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aqo" = (
+"aqV" = (
/obj/structure/table/reinforced,
/obj/effect/floor_decal/corner/lime{
dir = 6
@@ -8369,7 +8898,7 @@
/obj/machinery/computer/med_data/laptop,
/turf/simulated/floor/tiled,
/area/bridge)
-"aqp" = (
+"aqW" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -8391,7 +8920,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aqq" = (
+"aqX" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -8403,11 +8932,11 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aqr" = (
+"aqY" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aqs" = (
+"aqZ" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -8415,7 +8944,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aqt" = (
+"ara" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -8423,7 +8952,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aqu" = (
+"arb" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
id_tag = "engine_electrical_maintenance";
@@ -8438,7 +8967,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_smes)
-"aqv" = (
+"arc" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -8446,7 +8975,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqw" = (
+"ard" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -8458,7 +8987,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqx" = (
+"are" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -8474,7 +9003,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqy" = (
+"arf" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8490,7 +9019,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqz" = (
+"arg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -8504,7 +9033,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqA" = (
+"arh" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "SMES Access";
req_access = list(11)
@@ -8523,13 +9052,25 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/engineering/engine_smes)
-"aqB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
+"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/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aqC" = (
+/area/engineering/engine_monitoring)
+"arj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -8538,62 +9079,51 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aqD" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
+"ark" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/bag/circuits/basic,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aqE" = (
+"arl" = (
/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)
-"aqF" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aqG" = (
+"arm" = (
/obj/machinery/shieldgen,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aqH" = (
-/obj/structure/table/standard,
-/obj/machinery/newscaster{
- pixel_y = 32
+"arn" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"aro" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/door/window/southleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospheric Hardsuits";
+ req_access = list(24)
},
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/item/clothing/mask/gas,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aqI" = (
+/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)
-"aqJ" = (
+"arq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -8608,7 +9138,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqK" = (
+"arr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 4;
@@ -8620,7 +9150,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqL" = (
+"ars" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -8632,7 +9162,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqM" = (
+"art" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -8645,7 +9175,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqN" = (
+"aru" = (
/obj/machinery/power/apc/super{
name = "south bump";
pixel_y = -24
@@ -8656,7 +9186,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqO" = (
+"arv" = (
/obj/structure/closet/secure_closet/atmos_personal,
/obj/item/device/flashlight,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -8668,7 +9198,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqP" = (
+"arw" = (
/obj/structure/closet/secure_closet/atmos_personal,
/obj/item/device/flashlight,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -8680,7 +9210,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqQ" = (
+"arx" = (
/obj/structure/closet/secure_closet/atmos_personal,
/obj/item/device/flashlight,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -8688,19 +9218,19 @@
/obj/item/weapon/storage/belt/utility,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqR" = (
+"ary" = (
/obj/structure/dispenser/oxygen{
phorontanks = 10
},
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"aqS" = (
+"arz" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aqT" = (
+"arA" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -8714,12 +9244,12 @@
/obj/structure/closet/crate,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aqU" = (
+"arB" = (
/obj/machinery/deployable/barrier,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aqV" = (
+"arC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -8733,7 +9263,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aqW" = (
+"arD" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -8741,7 +9271,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aqX" = (
+"arE" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Ammunition (.45 lethal)"
},
@@ -8754,7 +9284,7 @@
/obj/item/ammo_magazine/c45m,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aqY" = (
+"arF" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Ammunition (45. less-than-lethal)"
},
@@ -8766,7 +9296,7 @@
/obj/item/ammo_magazine/c45m/rubber,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aqZ" = (
+"arG" = (
/obj/structure/closet/secure_closet/guncabinet{
name = "Ammunition (shotgun less-than-lethal)"
},
@@ -8787,14 +9317,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ara" = (
+"arH" = (
/obj/structure/sign/securearea{
pixel_x = 32;
pixel_y = 0
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"arb" = (
+"arI" = (
/obj/machinery/computer/sentencing/courtroom{
pixel_y = 28
},
@@ -8803,7 +9333,7 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/security/brig)
-"arc" = (
+"arJ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -8819,7 +9349,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ard" = (
+"arK" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -8834,7 +9364,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"are" = (
+"arL" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -8849,7 +9379,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"arf" = (
+"arM" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -8861,7 +9391,7 @@
/obj/item/device/flashlight/lamp,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"arg" = (
+"arN" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -8876,7 +9406,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"arh" = (
+"arO" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/blue{
@@ -8885,27 +9415,58 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ari" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"arj" = (
+"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/maintenance/library)
-"ark" = (
-/obj/machinery/shieldwallgen,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/area/security/security_office)
+"arQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/security_office)
+"arR" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access = list(63)
+ },
+/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/blue{
+ icon_state = "corner_white";
dir = 9
},
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"arl" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/bag/circuits/basic,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"arm" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Training & Investigations";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"arT" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -8921,22 +9482,27 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"arn" = (
+"arU" = (
/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security{
+ name = "Training & Investigations";
+ req_access = list(63)
},
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"aro" = (
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"arV" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -8950,7 +9516,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"arp" = (
+"arW" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -8960,7 +9526,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/security/brig)
-"arq" = (
+"arX" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -8974,7 +9540,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"arr" = (
+"arY" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8992,7 +9558,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"ars" = (
+"arZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9009,7 +9575,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"art" = (
+"asa" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
@@ -9027,7 +9593,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"aru" = (
+"asb" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
@@ -9046,59 +9612,66 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"arv" = (
-/obj/structure/cable/green{
- d1 = 4;
+"asc" = (
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+ dir = 10
},
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"arw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/maintenance/security_starboard)
-"arx" = (
-/obj/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"ary" = (
-/obj/machinery/door/blast/regular{
- density = 0;
+"asd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/machinery/alarm{
dir = 4;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
+ icon_state = "alarm0";
+ pixel_x = -22
},
-/obj/machinery/door/airlock/glass_command{
- name = "Command Maintenance";
- req_access = list(19)
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"ase" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"asf" = (
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
},
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"arz" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
+/obj/machinery/power/apc/vault{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28;
+ pixel_y = 0
},
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"arA" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"asg" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -9126,7 +9699,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"arB" = (
+"ash" = (
/obj/machinery/computer/security/engineering,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -9138,7 +9711,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arC" = (
+"asi" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 9
@@ -9149,13 +9722,13 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arD" = (
+"asj" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arE" = (
+"ask" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -9164,7 +9737,7 @@
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/tiled,
/area/bridge)
-"arF" = (
+"asl" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
@@ -9174,7 +9747,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/bridge)
-"arG" = (
+"asm" = (
/obj/structure/window/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/table/reinforced,
@@ -9183,7 +9756,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arH" = (
+"asn" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
},
@@ -9193,7 +9766,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arI" = (
+"aso" = (
/obj/machinery/computer/med_data,
/obj/effect/floor_decal/corner/lime{
dir = 6
@@ -9204,7 +9777,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"arJ" = (
+"asp" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -9223,20 +9796,20 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"arK" = (
+"asq" = (
/turf/simulated/wall/r_wall,
/area/mine/unexplored)
-"arL" = (
+"asr" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"arM" = (
+"ass" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"arN" = (
+"ast" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -9247,7 +9820,7 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"arO" = (
+"asu" = (
/obj/machinery/power/smes/buildable{
charge = 2e+006;
input_attempt = 1;
@@ -9262,7 +9835,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"arP" = (
+"asv" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "SMES Access";
req_access = list(11)
@@ -9274,7 +9847,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"arQ" = (
+"asw" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
@@ -9284,7 +9857,7 @@
},
/turf/simulated/wall/r_wall,
/area/engineering/engine_monitoring)
-"arR" = (
+"asx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9300,13 +9873,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"arS" = (
+"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/engine_monitoring)
-"arT" = (
+"asz" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Hard Storage";
req_access = list(11)
@@ -9321,7 +9894,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"arU" = (
+"asA" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Hard Storage";
req_access = list(11)
@@ -9329,7 +9902,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"arV" = (
+"asB" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -9342,7 +9915,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"arW" = (
+"asC" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -9355,12 +9928,12 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
-"arX" = (
+"asD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/turf/simulated/wall/r_wall,
/area/engineering/atmos/storage)
-"arY" = (
+"asE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Storage";
@@ -9371,11 +9944,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"arZ" = (
+"asF" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall/r_wall,
/area/engineering/atmos/storage)
-"asa" = (
+"asG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Storage";
@@ -9383,7 +9956,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/storage)
-"asb" = (
+"asH" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -9402,10 +9975,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"asc" = (
+"asI" = (
/turf/simulated/wall/r_wall,
/area/engineering/locker_room)
-"asd" = (
+"asJ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -9419,7 +9992,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ase" = (
+"asK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9434,7 +10007,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"asf" = (
+"asL" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -9450,25 +10023,27 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"asg" = (
-/obj/structure/cable/green{
- d1 = 4;
+"asM" = (
+/obj/structure/cable{
+ d1 = 2;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
dir = 9
},
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"ash" = (
+/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{
@@ -9481,7 +10056,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"asi" = (
+"asO" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -9489,7 +10064,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"asj" = (
+"asP" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -9497,7 +10072,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ask" = (
+"asQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
d1 = 4;
@@ -9506,7 +10081,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"asl" = (
+"asR" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -9518,14 +10093,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"asm" = (
+"asS" = (
/obj/machinery/newscaster{
pixel_x = -30;
pixel_y = 0
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asn" = (
+"asT" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -9538,18 +10113,18 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/security/brig)
-"aso" = (
+"asU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"asp" = (
+"asV" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"asq" = (
+"asW" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -9565,7 +10140,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"asr" = (
+"asX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -9584,7 +10159,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ass" = (
+"asY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9602,7 +10177,7 @@
/obj/structure/closet,
/turf/simulated/floor/tiled,
/area/security/brig)
-"ast" = (
+"asZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9626,7 +10201,7 @@
/obj/structure/closet,
/turf/simulated/floor/tiled,
/area/security/brig)
-"asu" = (
+"ata" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
@@ -9644,7 +10219,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asv" = (
+"atb" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -9666,7 +10241,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asw" = (
+"atc" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -9693,7 +10268,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asx" = (
+"atd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9717,7 +10292,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asy" = (
+"ate" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -9738,7 +10313,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asz" = (
+"atf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -9763,7 +10338,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asA" = (
+"atg" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -9780,7 +10355,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asB" = (
+"ath" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9802,7 +10377,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asC" = (
+"ati" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -9822,17 +10397,33 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
+"atj" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
+/obj/effect/floor_decal/corner/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/hallway/primary/central_one)
-"asE" = (
+/area/security/brig)
+"atk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9852,7 +10443,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asF" = (
+"atl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9880,7 +10471,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asG" = (
+"atm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9905,7 +10496,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asH" = (
+"atn" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -9927,7 +10518,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asI" = (
+"ato" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -9950,7 +10541,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asJ" = (
+"atp" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -9967,7 +10558,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"asK" = (
+"atq" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -9977,64 +10568,40 @@
/obj/structure/closet/walllocker/emerglocker/east,
/turf/simulated/floor/tiled,
/area/security/brig)
-"asL" = (
+"atr" = (
/turf/simulated/wall,
/area/lawoffice)
-"asM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"asN" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"asO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+"ats" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"asP" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"asQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"att" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
dir = 4
},
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"atu" = (
+/obj/structure/grille,
/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor{
- dir = 2
+/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/security_starboard)
-"asR" = (
+"atw" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -10063,7 +10630,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"asS" = (
+"atx" = (
/obj/machinery/computer/power_monitor,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -10080,7 +10647,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asT" = (
+"aty" = (
/obj/effect/floor_decal/corner/yellow/full,
/obj/structure/cable/green{
d1 = 4;
@@ -10089,7 +10656,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asU" = (
+"atz" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10102,7 +10669,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asV" = (
+"atA" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -10112,7 +10679,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asW" = (
+"atB" = (
/obj/machinery/computer/message_monitor,
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
@@ -10120,7 +10687,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asX" = (
+"atC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/item/modular_computer/console/preset/command,
@@ -10130,7 +10697,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"asY" = (
+"atD" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 1
@@ -10138,7 +10705,7 @@
/obj/item/modular_computer/console/preset/command,
/turf/simulated/floor/tiled,
/area/bridge)
-"asZ" = (
+"atE" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -10147,7 +10714,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"ata" = (
+"atF" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10160,7 +10727,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"atb" = (
+"atG" = (
/obj/effect/floor_decal/corner/lime/full{
dir = 4
},
@@ -10171,7 +10738,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"atc" = (
+"atH" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
},
@@ -10187,7 +10754,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"atd" = (
+"atI" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -10216,13 +10783,13 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"ate" = (
+"atJ" = (
/obj/structure/sign/securearea{
name = "\improper DANGER: REACTOR VENT SHAFT"
},
/turf/simulated/wall/r_wall,
/area/engineering/engine_waste)
-"atf" = (
+"atK" = (
/obj/structure/window/phoronreinforced,
/obj/structure/window/phoronreinforced{
icon_state = "phoronrwindow";
@@ -10244,7 +10811,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"atg" = (
+"atL" = (
/obj/structure/window/phoronreinforced,
/obj/structure/window/phoronreinforced{
icon_state = "phoronrwindow";
@@ -10262,7 +10829,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ath" = (
+"atM" = (
/obj/structure/window/phoronreinforced,
/obj/structure/window/phoronreinforced{
icon_state = "phoronrwindow";
@@ -10284,11 +10851,11 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ati" = (
+"atN" = (
/obj/structure/sign/nosmoking_2,
/turf/simulated/wall/r_wall,
/area/engineering/engine_room)
-"atj" = (
+"atO" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -10300,7 +10867,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"atk" = (
+"atP" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -10308,13 +10875,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"atl" = (
+"atQ" = (
/obj/structure/cable/orange{
icon_state = "1-2"
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"atm" = (
+"atR" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -10335,7 +10902,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"atn" = (
+"atS" = (
/obj/machinery/computer/general_air_control/supermatter_core{
frequency = 1438;
input_tag = "cooling_in";
@@ -10350,7 +10917,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ato" = (
+"atT" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -10367,7 +10934,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atp" = (
+"atU" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -10377,7 +10944,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atq" = (
+"atV" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10385,7 +10952,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atr" = (
+"atW" = (
/obj/structure/table/reinforced,
/obj/machinery/ringer{
department = "Engineering";
@@ -10396,7 +10963,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ats" = (
+"atX" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -10410,7 +10977,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"att" = (
+"atY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10423,7 +10990,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atu" = (
+"atZ" = (
/obj/machinery/alarm{
pixel_y = 22
},
@@ -10433,7 +11000,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atv" = (
+"aua" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10446,20 +11013,20 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atw" = (
+"aub" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atx" = (
+"auc" = (
/obj/effect/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aty" = (
+"aud" = (
/obj/machinery/light{
dir = 1
},
@@ -10471,24 +11038,24 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atz" = (
+"aue" = (
/obj/machinery/mech_recharger,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"atA" = (
+"auf" = (
/turf/simulated/wall/r_wall,
/area/engineering/atmos/monitoring)
-"atB" = (
+"aug" = (
/obj/machinery/computer/security/engineering,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"atC" = (
+"auh" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"atD" = (
+"aui" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -10511,7 +11078,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"atE" = (
+"auj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -10523,7 +11090,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"atF" = (
+"auk" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -10539,7 +11106,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"atG" = (
+"aul" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -10547,7 +11114,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atH" = (
+"aum" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
frequency = 1475;
@@ -10567,7 +11134,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atI" = (
+"aun" = (
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/atmospherics/portables_connector,
/obj/effect/floor_decal/industrial/outline/yellow,
@@ -10576,7 +11143,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atJ" = (
+"auo" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -10593,7 +11160,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"atK" = (
+"aup" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/device/flashlight,
@@ -10605,7 +11172,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atL" = (
+"auq" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/device/flashlight,
@@ -10619,7 +11186,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atM" = (
+"aur" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/device/flashlight,
@@ -10628,7 +11195,7 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atN" = (
+"aus" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/secure_closet/engineering_personal,
/obj/item/device/flashlight,
@@ -10646,11 +11213,11 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"atO" = (
+"aut" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"atP" = (
+"auu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10660,7 +11227,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"atQ" = (
+"auv" = (
/obj/machinery/hologram/holopad,
/obj/machinery/light,
/obj/machinery/camera/network/security{
@@ -10670,7 +11237,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atR" = (
+"auw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -10680,27 +11247,27 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atS" = (
+"aux" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atT" = (
+"auy" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atU" = (
+"auz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atV" = (
+"auA" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 32
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"atW" = (
+"auB" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -10713,14 +11280,14 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"atX" = (
+"auC" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"atY" = (
+"auD" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -10741,7 +11308,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"atZ" = (
+"auE" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -10760,11 +11327,11 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aua" = (
+"auF" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aub" = (
+"auG" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -10778,7 +11345,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auc" = (
+"auH" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10794,7 +11361,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aud" = (
+"auI" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10810,7 +11377,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aue" = (
+"auJ" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10820,7 +11387,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"auf" = (
+"auK" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10830,7 +11397,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aug" = (
+"auL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
@@ -10839,7 +11406,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auh" = (
+"auM" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -10852,7 +11419,7 @@
/obj/effect/floor_decal/corner/blue,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aui" = (
+"auN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -10861,7 +11428,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auj" = (
+"auO" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -10871,20 +11438,20 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auk" = (
+"auP" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aul" = (
+"auQ" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/blue{
dir = 10
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aum" = (
+"auR" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10893,7 +11460,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aun" = (
+"auS" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10904,12 +11471,12 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auo" = (
+"auT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aup" = (
+"auU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -10926,7 +11493,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"auq" = (
+"auV" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -10935,7 +11502,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aur" = (
+"auW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -10949,7 +11516,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aus" = (
+"auX" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -10961,30 +11528,30 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aut" = (
+"auY" = (
/turf/simulated/floor/carpet,
/area/lawoffice)
-"auu" = (
+"auZ" = (
/obj/machinery/status_display{
pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"auv" = (
+"ava" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"auw" = (
+"avb" = (
/obj/machinery/light_switch{
pixel_x = 0;
pixel_y = 24
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aux" = (
+"avc" = (
/obj/structure/closet/lawcloset,
/obj/item/weapon/storage/briefcase{
pixel_x = 3;
@@ -11000,10 +11567,10 @@
/obj/item/device/flash,
/turf/simulated/floor/wood,
/area/lawoffice)
-"auy" = (
+"avd" = (
/turf/simulated/wall,
/area/hallway/primary/starboard)
-"auz" = (
+"ave" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11020,16 +11587,26 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/starboard)
-"auA" = (
+"avf" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/starboard)
+"avg" = (
+/obj/machinery/porta_turret/stationary,
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"avh" = (
/obj/machinery/light{
dir = 4
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/bridge)
-"auB" = (
+"avi" = (
/turf/simulated/wall,
/area/bridge)
-"auC" = (
+"avj" = (
/obj/structure/table/reinforced,
/obj/machinery/alarm{
dir = 4;
@@ -11058,7 +11635,7 @@
/obj/item/device/taperecorder,
/turf/simulated/floor/tiled,
/area/bridge)
-"auD" = (
+"avk" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 9
@@ -11067,7 +11644,7 @@
/obj/machinery/case_button/shuttle,
/turf/simulated/floor/tiled,
/area/bridge)
-"auE" = (
+"avl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/structure/bed/chair/office/bridge{
@@ -11076,7 +11653,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"auF" = (
+"avm" = (
/obj/structure/table/reinforced,
/obj/machinery/button/remote/blast_door{
id = "bridge blast";
@@ -11091,7 +11668,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"auG" = (
+"avn" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
dir = 4;
@@ -11119,7 +11696,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"auH" = (
+"avo" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -11127,10 +11704,10 @@
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/bridge)
-"auI" = (
+"avp" = (
/turf/simulated/open,
/area/engineering/engine_waste)
-"auJ" = (
+"avq" = (
/obj/machinery/door/blast/regular{
dir = 1;
icon_state = "pdoor1";
@@ -11140,12 +11717,12 @@
},
/turf/simulated/floor/airless,
/area/engineering/engine_waste)
-"auK" = (
+"avr" = (
/turf/simulated/floor/airless{
icon_state = "asteroidplating"
},
/area/mine/unexplored)
-"auL" = (
+"avs" = (
/obj/machinery/camera/network/engine{
c_tag = "Engine Core West";
dir = 4
@@ -11155,13 +11732,13 @@
icon_state = "plating"
},
/area/engineering/engine_room)
-"auM" = (
+"avt" = (
/turf/simulated/floor/greengrid/nitrogen{
icon = 'icons/turf/flooring/plating.dmi';
icon_state = "plating"
},
/area/engineering/engine_room)
-"auN" = (
+"avu" = (
/obj/machinery/atmospherics/unary/outlet_injector{
dir = 4;
frequency = 1438;
@@ -11178,7 +11755,7 @@
icon_state = "plating"
},
/area/engineering/engine_room)
-"auO" = (
+"avv" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
id_tag = "engine_access_hatch";
@@ -11191,7 +11768,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"auP" = (
+"avw" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4;
icon_state = "intact"
@@ -11202,20 +11779,20 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"auQ" = (
+"avx" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 10
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"auR" = (
+"avy" = (
/obj/structure/cable/orange{
icon_state = "1-2"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"auS" = (
+"avz" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -11233,12 +11810,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"auT" = (
+"avA" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"auU" = (
+"avB" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -11253,15 +11830,15 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"auV" = (
+"avC" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"auW" = (
+"avD" = (
/obj/structure/table/reinforced,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"auX" = (
+"avE" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -11273,7 +11850,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"auY" = (
+"avF" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -11291,7 +11868,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"auZ" = (
+"avG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11301,7 +11878,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ava" = (
+"avH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11309,7 +11886,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avb" = (
+"avI" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -11324,7 +11901,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avc" = (
+"avJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11336,7 +11913,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avd" = (
+"avK" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
@@ -11349,7 +11926,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ave" = (
+"avL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11368,7 +11945,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avf" = (
+"avM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11379,7 +11956,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avg" = (
+"avN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11391,14 +11968,26 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"avh" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
+"avO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"avi" = (
+/area/engineering/engine_monitoring)
+"avP" = (
/obj/machinery/computer/atmos_alert,
/obj/machinery/alarm{
dir = 4;
@@ -11408,13 +11997,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"avj" = (
+"avQ" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"avk" = (
+"avR" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -11423,7 +12012,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/red,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"avl" = (
+"avS" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -11437,7 +12026,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"avm" = (
+"avT" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -11453,7 +12042,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"avn" = (
+"avU" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -11469,7 +12058,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avo" = (
+"avV" = (
/obj/machinery/meter,
/obj/structure/cable/green{
d1 = 4;
@@ -11482,7 +12071,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avp" = (
+"avW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11497,7 +12086,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avq" = (
+"avX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Locker Room";
@@ -11513,7 +12102,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avr" = (
+"avY" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11526,7 +12115,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avs" = (
+"avZ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -11534,7 +12123,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avt" = (
+"awa" = (
/obj/structure/closet/medical_wall{
pixel_x = 32
},
@@ -11550,7 +12139,11 @@
/obj/item/weapon/reagent_containers/pill/antitox,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"avu" = (
+"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{
@@ -11565,7 +12158,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"avv" = (
+"awd" = (
/obj/structure/table/standard,
/obj/machinery/recharger,
/obj/structure/sign/nosmoking_2{
@@ -11578,43 +12171,40 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"avw" = (
+"awe" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"avx" = (
+"awf" = (
/obj/machinery/flasher/portable,
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"avy" = (
+"awg" = (
/obj/structure/window/reinforced,
/obj/effect/floor_decal/corner/blue{
dir = 10
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avz" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
+"awh" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ icon_state = "leftsecure";
+ name = "Secure Holding Cell";
+ req_access = list(2)
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
},
-/obj/structure/disposalpipe/junction/yjunction{
- icon_state = "pipe-y";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"avA" = (
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"awi" = (
/obj/structure/window/reinforced,
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -11631,7 +12221,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avB" = (
+"awj" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -11648,11 +12238,11 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"avC" = (
+"awk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/security/brig)
-"avD" = (
+"awl" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -11673,7 +12263,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avE" = (
+"awm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
@@ -11688,7 +12278,7 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/security/brig)
-"avF" = (
+"awn" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -11701,18 +12291,18 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avG" = (
+"awo" = (
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
/area/security/brig)
-"avH" = (
+"awp" = (
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avI" = (
+"awq" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -11723,7 +12313,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/brig)
-"avJ" = (
+"awr" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -11741,10 +12331,10 @@
},
/turf/simulated/floor/plating,
/area/security/prison)
-"avK" = (
+"aws" = (
/turf/simulated/wall,
/area/security/prison)
-"avL" = (
+"awt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
id_tag = "prisonexit";
@@ -11760,7 +12350,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/prison)
-"avM" = (
+"awu" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -11784,7 +12374,7 @@
},
/turf/simulated/floor/plating,
/area/security/prison)
-"avN" = (
+"awv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor/northright{
id = "Cell 1";
@@ -11804,7 +12394,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"avO" = (
+"aww" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor/northright{
id = "Cell 2";
@@ -11824,10 +12414,10 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"avP" = (
+"awx" = (
/turf/simulated/floor/tiled/ramp/bottom,
/area/security/brig)
-"avQ" = (
+"awy" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -11840,7 +12430,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"avR" = (
+"awz" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -11854,7 +12444,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"avS" = (
+"awA" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -11862,16 +12452,21 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/security/brig)
-"avT" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
+"awB" = (
+/obj/structure/bed/chair/office/dark{
dir = 4
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
+/obj/machinery/button/windowtint{
+ id = "iaa";
+ pixel_x = -24;
+ pixel_y = 0
},
-/area/outpost/mining_main/eva)
-"avU" = (
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/turf/simulated/floor/carpet,
+/area/lawoffice)
+"awC" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen{
@@ -11885,23 +12480,23 @@
/obj/item/weapon/pen/red,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"avV" = (
+"awD" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 4
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"avW" = (
+"awE" = (
/turf/simulated/floor/wood,
/area/lawoffice)
-"avX" = (
+"awF" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"avY" = (
+"awG" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red{
desc = "A red folder. You can make out a small scribble in the top right corner. It reads Top Secret.";
@@ -11912,7 +12507,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"avZ" = (
+"awH" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -11929,11 +12524,11 @@
},
/turf/simulated/floor/plating,
/area/lawoffice)
-"awa" = (
+"awI" = (
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"awb" = (
+"awJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11945,18 +12540,16 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"awc" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/reagent_containers/glass/bucket,
+"awK" = (
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"awd" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"awe" = (
+/area/hallway/primary/starboard)
+"awL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"awM" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -11968,14 +12561,14 @@
/obj/item/modular_computer/console/preset/security,
/turf/simulated/floor/tiled,
/area/bridge)
-"awf" = (
+"awN" = (
/obj/effect/floor_decal/corner/blue/full{
icon_state = "corner_white_full";
dir = 8
},
/turf/simulated/floor/tiled,
/area/bridge)
-"awg" = (
+"awO" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -11986,14 +12579,14 @@
/obj/structure/banner,
/turf/simulated/floor/tiled,
/area/bridge)
-"awh" = (
+"awP" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 1
},
/turf/simulated/floor/tiled,
/area/bridge)
-"awi" = (
+"awQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
@@ -12001,7 +12594,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/bridge)
-"awj" = (
+"awR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12011,7 +12604,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"awk" = (
+"awS" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -12026,14 +12619,14 @@
/obj/structure/banner,
/turf/simulated/floor/tiled,
/area/bridge)
-"awl" = (
+"awT" = (
/obj/effect/floor_decal/corner/purple/full{
icon_state = "corner_white_full";
dir = 1
},
/turf/simulated/floor/tiled,
/area/bridge)
-"awm" = (
+"awU" = (
/obj/machinery/computer/mecha,
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
@@ -12045,13 +12638,13 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"awn" = (
+"awV" = (
/obj/machinery/light/small/emergency{
dir = 8
},
/turf/simulated/open,
/area/engineering/engine_waste)
-"awo" = (
+"awW" = (
/obj/machinery/door/blast/regular{
dir = 4;
icon_state = "pdoor1";
@@ -12061,10 +12654,10 @@
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/engineering/engine_room)
-"awp" = (
+"awX" = (
/turf/simulated/floor/greengrid/nitrogen,
/area/engineering/engine_room)
-"awq" = (
+"awY" = (
/obj/machinery/mass_driver{
icon_state = "mass_driver";
dir = 8;
@@ -12075,7 +12668,7 @@
},
/turf/simulated/floor/greengrid/nitrogen,
/area/engineering/engine_room)
-"awr" = (
+"awZ" = (
/obj/machinery/air_sensor{
frequency = 1438;
id_tag = "engine_sensor";
@@ -12086,7 +12679,7 @@
icon_state = "plating"
},
/area/engineering/engine_room)
-"aws" = (
+"axa" = (
/obj/structure/window/phoronreinforced{
icon_state = "phoronrwindow";
dir = 4
@@ -12112,7 +12705,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"awt" = (
+"axb" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/effect/floor_decal/industrial/warning,
/obj/effect/floor_decal/industrial/warning{
@@ -12120,7 +12713,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"awu" = (
+"axc" = (
/obj/machinery/power/emitter{
anchored = 1;
dir = 8;
@@ -12138,14 +12731,14 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"awv" = (
+"axd" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/structure/cable/orange{
icon_state = "4-8"
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aww" = (
+"axe" = (
/obj/structure/cable/orange{
icon_state = "4-8"
},
@@ -12156,7 +12749,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"awx" = (
+"axf" = (
/obj/structure/cable/orange{
icon_state = "1-8"
},
@@ -12177,7 +12770,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"awy" = (
+"axg" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -12201,7 +12794,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"awz" = (
+"axh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -12216,7 +12809,7 @@
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awA" = (
+"axi" = (
/obj/structure/table/reinforced,
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for the engine control room blast doors.";
@@ -12259,7 +12852,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awB" = (
+"axj" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12271,7 +12864,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awC" = (
+"axk" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12290,7 +12883,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awD" = (
+"axl" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12304,7 +12897,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awE" = (
+"axm" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engine Monitoring Room";
req_access = list(11)
@@ -12323,7 +12916,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awF" = (
+"axn" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12347,7 +12940,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awG" = (
+"axo" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12362,7 +12955,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awH" = (
+"axp" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12377,7 +12970,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awI" = (
+"axq" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12391,7 +12984,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awJ" = (
+"axr" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12409,7 +13002,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awK" = (
+"axs" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12428,7 +13021,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awL" = (
+"axt" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -12446,7 +13039,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awM" = (
+"axu" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -12460,28 +13053,44 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"awN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
+"axv" = (
+/obj/structure/table/rack,
+/obj/item/weapon/pickaxe{
+ pixel_x = 8
+ },
+/obj/item/weapon/pickaxe,
+/obj/item/weapon/pickaxe{
+ pixel_x = -8
+ },
+/obj/structure/cable{
d1 = 1;
d2 = 2;
- icon_state = "1-2"
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"awO" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Corridor Camera 1";
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"axw" = (
/obj/item/modular_computer/console/preset/engineering,
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"awP" = (
+"axx" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"awQ" = (
+"axy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12491,7 +13100,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"awR" = (
+"axz" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12508,7 +13117,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"awS" = (
+"axA" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -12524,7 +13133,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"awT" = (
+"axB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -12540,7 +13149,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"awU" = (
+"axC" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
@@ -12550,7 +13159,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"awV" = (
+"axD" = (
/obj/machinery/atmospherics/pipe/simple/visible{
icon_state = "intact";
dir = 10
@@ -12560,7 +13169,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"awW" = (
+"axE" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -12580,7 +13189,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"awX" = (
+"axF" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/light_switch{
pixel_x = 0;
@@ -12588,32 +13197,32 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"awY" = (
+"axG" = (
/obj/machinery/light,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"awZ" = (
+"axH" = (
/obj/structure/table/standard,
/obj/item/device/floor_painter,
/obj/item/clothing/head/hardhat,
/obj/item/clothing/head/hardhat,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"axa" = (
+"axI" = (
/obj/structure/closet/radiation,
/obj/item/clothing/glasses/meson,
/obj/item/clothing/glasses/meson,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"axb" = (
+"axJ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"axc" = (
+"axK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
@@ -12628,7 +13237,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"axd" = (
+"axL" = (
/obj/effect/decal/cleanable/generic,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -12637,7 +13246,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"axe" = (
+"axM" = (
/obj/machinery/alarm{
pixel_y = 23
},
@@ -12647,10 +13256,10 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"axf" = (
+"axN" = (
/turf/simulated/wall,
/area/security/armoury)
-"axg" = (
+"axO" = (
/obj/machinery/computer/prisoner,
/obj/machinery/requests_console{
department = "Security";
@@ -12659,7 +13268,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"axh" = (
+"axP" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -12676,7 +13285,7 @@
/obj/structure/table/rack,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"axi" = (
+"axQ" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -12692,7 +13301,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"axj" = (
+"axR" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/armor/laserproof{
pixel_x = -2;
@@ -12720,7 +13329,7 @@
/obj/item/clothing/head/helmet/ablative,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"axk" = (
+"axS" = (
/obj/machinery/flasher/portable,
/obj/machinery/light/small/emergency{
icon_state = "bulb1";
@@ -12729,7 +13338,7 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"axl" = (
+"axT" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -12744,7 +13353,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"axm" = (
+"axU" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -12758,7 +13367,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"axn" = (
+"axV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -12777,7 +13386,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"axo" = (
+"axW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Security Processing";
@@ -12791,14 +13400,14 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"axp" = (
+"axX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/security/brig)
-"axq" = (
+"axY" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -12807,7 +13416,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/security/brig)
-"axr" = (
+"axZ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -12824,7 +13433,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"axs" = (
+"aya" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -12843,7 +13452,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"axt" = (
+"ayb" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -12856,7 +13465,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"axu" = (
+"ayc" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -12867,7 +13476,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"axv" = (
+"ayd" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -12880,7 +13489,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/brig)
-"axw" = (
+"aye" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -12900,7 +13509,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/security/prison)
-"axx" = (
+"ayf" = (
/obj/machinery/flasher{
id = "permentryflash";
name = "Floor mounted flash";
@@ -12917,7 +13526,7 @@
/obj/structure/closet/walllocker/emerglocker/north,
/turf/simulated/floor/tiled,
/area/security/prison)
-"axy" = (
+"ayg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green,
@@ -12936,7 +13545,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"axz" = (
+"ayh" = (
/obj/structure/sink{
dir = 8;
icon_state = "sink";
@@ -12948,7 +13557,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"axA" = (
+"ayi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -12957,7 +13566,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"axB" = (
+"ayj" = (
/obj/structure/bed,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -12971,7 +13580,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"axC" = (
+"ayk" = (
/obj/structure/bed,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -12985,7 +13594,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"axD" = (
+"ayl" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -12993,10 +13602,10 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"axE" = (
+"aym" = (
/turf/simulated/floor/plating,
/area/security/brig)
-"axF" = (
+"ayn" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -13006,7 +13615,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"axG" = (
+"ayo" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light/small{
dir = 8
@@ -13019,13 +13628,13 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"axH" = (
+"ayp" = (
/obj/structure/table/wood,
/obj/machinery/computer/skills,
/obj/structure/window/reinforced,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"axI" = (
+"ayq" = (
/obj/structure/bed/chair/comfy/brown{
dir = 1
},
@@ -13036,23 +13645,23 @@
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"axJ" = (
+"ayr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"axK" = (
+"ays" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"axL" = (
+"ayt" = (
/obj/machinery/photocopier,
/turf/simulated/floor/wood,
/area/lawoffice)
-"axM" = (
+"ayu" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -13065,16 +13674,14 @@
},
/turf/simulated/floor/plating,
/area/lawoffice)
-"axN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/bed/chair{
- dir = 4
+"ayv" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
+/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"axO" = (
+"ayw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13088,33 +13695,61 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"axP" = (
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"axQ" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"axR" = (
-/turf/simulated/open,
-/area/turbolift/vault_station)
-"axS" = (
-/obj/structure/window/reinforced{
+"ayx" = (
+/obj/machinery/light/small/emergency{
dir = 8
},
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/obj/machinery/camera/motion/security{
+ c_tag = "Vault - Interior";
+ dir = 4;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"ayy" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"axT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/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/dark,
+/area/security/nuke_storage)
+"ayA" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"ayB" = (
+/obj/machinery/light/small/emergency{
+ icon_state = "bulb1";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"ayC" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -13142,7 +13777,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"axU" = (
+"ayD" = (
/obj/machinery/computer/secure_data,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -13154,7 +13789,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"axV" = (
+"ayE" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -13165,26 +13800,26 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"axW" = (
+"ayF" = (
/turf/simulated/floor/tiled/ramp/bottom{
icon_state = "rampbot";
dir = 8
},
/area/bridge)
-"axX" = (
+"ayG" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/bridge)
-"axY" = (
+"ayH" = (
/turf/simulated/floor/tiled/ramp/bottom{
icon_state = "rampbot";
dir = 4
},
/area/bridge)
-"axZ" = (
+"ayI" = (
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
dir = 6
@@ -13195,7 +13830,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aya" = (
+"ayJ" = (
/obj/machinery/computer/robotics,
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
@@ -13207,7 +13842,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"ayb" = (
+"ayK" = (
/obj/machinery/atmospherics/unary/vent_pump/engine{
dir = 4;
external_pressure_bound = 100;
@@ -13226,7 +13861,7 @@
icon_state = "plating"
},
/area/engineering/engine_room)
-"ayc" = (
+"ayL" = (
/obj/machinery/door/airlock/hatch{
icon_state = "door_locked";
id_tag = "engine_access_hatch";
@@ -13238,7 +13873,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ayd" = (
+"ayM" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
icon_state = "intact";
dir = 10
@@ -13249,14 +13884,14 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aye" = (
+"ayN" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
icon_state = "intact";
dir = 6
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ayf" = (
+"ayO" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -13272,7 +13907,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ayg" = (
+"ayP" = (
/obj/structure/cable/orange{
icon_state = "1-2"
},
@@ -13284,7 +13919,7 @@
/obj/structure/cable/orange,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"ayh" = (
+"ayQ" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -13294,18 +13929,18 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayi" = (
+"ayR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayj" = (
+"ayS" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayk" = (
+"ayT" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -13322,7 +13957,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"ayl" = (
+"ayU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13347,7 +13982,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aym" = (
+"ayV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
@@ -13360,13 +13995,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayn" = (
+"ayW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayo" = (
+"ayX" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -13375,7 +14010,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayp" = (
+"ayY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13385,7 +14020,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayq" = (
+"ayZ" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13396,14 +14031,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayr" = (
+"aza" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/effect/floor_decal/corner/yellow/full,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ays" = (
+"azb" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -13412,7 +14047,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayt" = (
+"azc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -13422,7 +14057,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayu" = (
+"azd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -13432,7 +14067,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayv" = (
+"aze" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13448,26 +14083,25 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayw" = (
+"azf" = (
+/obj/item/weapon/shovel{
+ pixel_x = 8
+ },
+/obj/item/weapon/shovel{
+ pixel_x = -8
+ },
+/obj/item/weapon/shovel,
+/obj/structure/table/rack,
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
+/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"ayx" = (
+"azg" = (
/obj/machinery/computer/general_air_control{
frequency = 1441;
name = "Tank Monitor";
@@ -13482,7 +14116,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"ayy" = (
+"azh" = (
/obj/machinery/computer/general_air_control{
frequency = 1441;
level = 3;
@@ -13491,7 +14125,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"ayz" = (
+"azi" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13505,7 +14139,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"ayA" = (
+"azj" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -13518,7 +14152,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"ayB" = (
+"azk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13533,7 +14167,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"ayC" = (
+"azl" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/machinery/atmospherics/portables_connector{
dir = 1
@@ -13541,21 +14175,17 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"ayD" = (
+"azm" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/engineering)
-"ayE" = (
+"azn" = (
/turf/simulated/wall,
/area/maintenance/substation/engineering)
-"ayF" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"ayG" = (
+"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{
@@ -13565,7 +14195,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ayH" = (
+"azq" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 4;
@@ -13574,7 +14204,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ayI" = (
+"azr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13583,13 +14213,13 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"ayJ" = (
+"azs" = (
/obj/machinery/recharger/wallcharger{
pixel_x = -24
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ayK" = (
+"azt" = (
/obj/machinery/door/window/brigdoor/southright{
dir = 4;
icon_state = "rightsecure";
@@ -13598,7 +14228,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ayL" = (
+"azu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -13613,7 +14243,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ayM" = (
+"azv" = (
/obj/structure/table/rack,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = -2;
@@ -13638,7 +14268,7 @@
/obj/item/clothing/head/helmet/ballistic,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"ayN" = (
+"azw" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -13655,7 +14285,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayO" = (
+"azx" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
dir = 4
@@ -13668,7 +14298,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayP" = (
+"azy" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -13692,26 +14322,26 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayQ" = (
+"azz" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayR" = (
+"azA" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"ayS" = (
+"azB" = (
/obj/structure/bed/chair{
dir = 8
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"ayT" = (
+"azC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13729,7 +14359,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayU" = (
+"azD" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -13738,7 +14368,7 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayV" = (
+"azE" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -13747,13 +14377,13 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayW" = (
+"azF" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/meter,
/turf/simulated/floor/tiled,
/area/security/brig)
-"ayX" = (
+"azG" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -13766,12 +14396,12 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/security/prison)
-"ayY" = (
+"azH" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/security/prison)
-"ayZ" = (
+"azI" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -13781,17 +14411,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aza" = (
+"azJ" = (
/obj/structure/toilet{
dir = 4;
pixel_y = 5
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"azb" = (
+"azK" = (
/turf/simulated/floor/tiled,
/area/security/prison)
-"azc" = (
+"azL" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 1";
name = "Cell 1 Locker"
@@ -13801,7 +14431,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"azd" = (
+"azM" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
name = "Cell 2 Locker"
@@ -13811,15 +14441,15 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aze" = (
+"azN" = (
/obj/machinery/recharge_station,
/turf/simulated/floor/greengrid,
/area/security/brig)
-"azf" = (
+"azO" = (
/obj/machinery/computer/area_atmos,
/turf/simulated/floor/plating,
/area/security/brig)
-"azg" = (
+"azP" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -13830,7 +14460,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/security/brig)
-"azh" = (
+"azQ" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light/small{
dir = 8
@@ -13845,7 +14475,7 @@
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"azi" = (
+"azR" = (
/obj/structure/table/wood,
/obj/machinery/computer/skills,
/obj/structure/window/reinforced{
@@ -13853,7 +14483,7 @@
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"azj" = (
+"azS" = (
/obj/structure/bed/chair/comfy/brown,
/obj/structure/window/reinforced{
dir = 1
@@ -13864,12 +14494,12 @@
},
/turf/simulated/floor/carpet,
/area/lawoffice)
-"azk" = (
+"azT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/lawoffice)
-"azl" = (
+"azU" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder{
pixel_x = 3;
@@ -13882,13 +14512,13 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"azm" = (
-/obj/structure/bed/chair{
+"azV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"azn" = (
+"azW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13900,11 +14530,24 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"azo" = (
+"azX" = (
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"azp" = (
+"azY" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"azZ" = (
+/obj/random/junk,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
+"aAa" = (
/obj/machinery/computer/prisoner,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -13921,7 +14564,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azq" = (
+"aAb" = (
/obj/effect/floor_decal/corner/blue/full,
/obj/structure/cable/green{
d1 = 4;
@@ -13935,7 +14578,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azr" = (
+"aAc" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -13953,7 +14596,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azs" = (
+"aAd" = (
/obj/machinery/recharger/wallcharger{
pixel_x = 6;
pixel_y = -32
@@ -13968,7 +14611,7 @@
dir = 8
},
/area/bridge)
-"azt" = (
+"aAe" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -13977,7 +14620,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/bridge)
-"azu" = (
+"aAf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -13993,7 +14636,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azv" = (
+"aAg" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Bridge";
@@ -14008,7 +14651,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azw" = (
+"aAh" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -14022,7 +14665,7 @@
dir = 4
},
/area/bridge)
-"azx" = (
+"aAi" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -14038,7 +14681,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azy" = (
+"aAj" = (
/obj/effect/floor_decal/corner/purple/full{
dir = 4
},
@@ -14049,7 +14692,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azz" = (
+"aAk" = (
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
dir = 6
@@ -14066,11 +14709,11 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"azA" = (
+"aAl" = (
/obj/structure/sign/vacuum,
/turf/simulated/wall/r_wall,
/area/engineering/engine_waste)
-"azB" = (
+"aAm" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for the engine charging port.";
@@ -14100,12 +14743,12 @@
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"azC" = (
+"aAn" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan,
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"azD" = (
+"aAo" = (
/obj/structure/cable/orange{
icon_state = "1-2"
},
@@ -14114,7 +14757,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"azE" = (
+"aAp" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -14133,12 +14776,12 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"azF" = (
+"aAq" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/computer/security/engineering,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azG" = (
+"aAr" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 10
@@ -14146,7 +14789,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azH" = (
+"aAs" = (
/obj/item/device/radio/intercom{
layer = 4;
name = "Station Intercom (General)";
@@ -14160,7 +14803,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azI" = (
+"aAt" = (
/obj/machinery/newscaster{
layer = 3.3;
pixel_x = 0;
@@ -14168,7 +14811,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azJ" = (
+"aAu" = (
/obj/structure/closet/radiation,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light_switch{
@@ -14177,7 +14820,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azK" = (
+"aAv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -14190,7 +14833,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azL" = (
+"aAw" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -14207,7 +14850,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"azM" = (
+"aAx" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering EVA Storage";
req_access = list(11);
@@ -14216,7 +14859,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"azN" = (
+"aAy" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -14229,7 +14872,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"azO" = (
+"aAz" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -14238,7 +14881,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"azP" = (
+"aAA" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -14251,7 +14894,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"azQ" = (
+"aAB" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -14268,7 +14911,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"azR" = (
+"aAC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14283,33 +14926,30 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"azS" = (
-/obj/structure/table/rack,
-/obj/item/weapon/pickaxe{
- pixel_x = 8
+"aAD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
},
-/obj/item/weapon/pickaxe,
-/obj/item/weapon/pickaxe{
- pixel_x = -8
+/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";
pixel_y = 0
},
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Corridor Camera 1";
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
+/turf/simulated/floor/plating,
/area/engineering/engine_monitoring)
-"azT" = (
+"aAE" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -14321,7 +14961,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/atmos/monitoring)
-"azU" = (
+"aAF" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -14333,7 +14973,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/atmos/monitoring)
-"azV" = (
+"aAG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Monitoring Room";
@@ -14348,11 +14988,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
-"azW" = (
+"aAH" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall/r_wall,
/area/engineering/locker_room)
-"azX" = (
+"aAI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Hallway";
@@ -14365,7 +15005,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/locker_room)
-"azY" = (
+"aAJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -14377,7 +15017,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"azZ" = (
+"aAK" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -14389,10 +15029,10 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/locker_room)
-"aAa" = (
+"aAL" = (
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aAb" = (
+"aAM" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -14416,7 +15056,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aAc" = (
+"aAN" = (
/obj/machinery/power/smes/buildable{
charge = 0;
RCon_tag = "Substation - Engineering Main"
@@ -14431,13 +15071,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aAd" = (
+"aAO" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Engineering Main Substation Bypass"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aAe" = (
+"aAP" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -14446,11 +15086,11 @@
},
/turf/simulated/wall,
/area/maintenance/substation/engineering)
-"aAf" = (
+"aAQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/wall,
/area/maintenance/engineering)
-"aAg" = (
+"aAR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14461,7 +15101,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aAh" = (
+"aAS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -14471,7 +15111,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aAi" = (
+"aAT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -14481,7 +15121,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aAj" = (
+"aAU" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14494,7 +15134,7 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aAk" = (
+"aAV" = (
/obj/structure/table/rack,
/obj/item/weapon/storage/box/flashbangs{
pixel_x = 2;
@@ -14504,7 +15144,7 @@
/obj/item/weapon/storage/box/firingpins,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aAl" = (
+"aAW" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -14516,7 +15156,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAm" = (
+"aAX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable/green{
@@ -14526,7 +15166,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAn" = (
+"aAY" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -14542,7 +15182,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAo" = (
+"aAZ" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/evidence,
/obj/item/weapon/hand_labeler{
@@ -14555,7 +15195,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAp" = (
+"aBa" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -14563,7 +15203,7 @@
/obj/machinery/computer/secure_data,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAq" = (
+"aBb" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/blue{
dir = 10
@@ -14574,7 +15214,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aAr" = (
+"aBc" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -14586,7 +15226,7 @@
/obj/item/device/flashlight/lamp,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aAs" = (
+"aBd" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -14604,10 +15244,10 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAt" = (
+"aBe" = (
/turf/simulated/wall,
/area/security/warden)
-"aAu" = (
+"aBf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Warden's Office";
@@ -14625,7 +15265,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aAv" = (
+"aBg" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -14644,7 +15284,7 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"aAw" = (
+"aBh" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced/steel,
/obj/item/weapon/paper_bin{
@@ -14661,11 +15301,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/security/warden)
-"aAx" = (
+"aBi" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/security/warden)
-"aAy" = (
+"aBj" = (
/obj/machinery/door/airlock/glass_security{
id_tag = "prisonentry";
name = "Brig Entry";
@@ -14689,7 +15329,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aAz" = (
+"aBk" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -14708,7 +15348,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/prison)
-"aAA" = (
+"aBl" = (
/obj/machinery/door/blast/regular{
dir = 1;
id = "Cell 1";
@@ -14718,7 +15358,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aAB" = (
+"aBm" = (
/obj/machinery/door/blast/regular{
dir = 1;
id = "Cell 2";
@@ -14728,7 +15368,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aAC" = (
+"aBn" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
d1 = 1;
@@ -14746,7 +15386,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAD" = (
+"aBo" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -14758,11 +15398,11 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aAE" = (
+"aBp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aAF" = (
+"aBq" = (
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine{
anchored = 0;
@@ -14770,7 +15410,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aAG" = (
+"aBr" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -14786,16 +15426,13 @@
},
/turf/simulated/floor/plating,
/area/lawoffice)
-"aAH" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_x = 0
+"aBs" = (
+/obj/structure/bed/chair{
+ dir = 8
},
-/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aAI" = (
+"aBt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14809,23 +15446,31 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aAJ" = (
+"aBu" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aAK" = (
+"aBv" = (
/turf/simulated/wall/r_wall,
/area/teleporter)
-"aAL" = (
+"aBw" = (
/obj/machinery/door/airlock/maintenance{
req_access = list(17)
},
/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/plating,
/area/teleporter)
-"aAM" = (
+"aBx" = (
+/turf/simulated/wall,
+/area/teleporter)
+"aBy" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -14838,7 +15483,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/bridge)
-"aAN" = (
+"aBz" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -14851,7 +15496,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/bridge)
-"aAO" = (
+"aBA" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Bridge";
@@ -14868,10 +15513,13 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aAP" = (
+"aBB" = (
+/turf/simulated/wall,
+/area/crew_quarters/captain)
+"aBC" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/captain)
-"aAQ" = (
+"aBD" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
@@ -14896,7 +15544,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aAR" = (
+"aBE" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -14918,7 +15566,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aAS" = (
+"aBF" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -14944,7 +15592,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aAT" = (
+"aBG" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 6
},
@@ -14954,7 +15602,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aAU" = (
+"aBH" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 4
},
@@ -14964,7 +15612,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aAV" = (
+"aBI" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
icon_state = "map";
dir = 1
@@ -14975,7 +15623,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aAW" = (
+"aBJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
dir = 9
},
@@ -14985,7 +15633,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aAX" = (
+"aBK" = (
/obj/structure/cable/orange,
/obj/machinery/power/apc/super/critical{
dir = 4;
@@ -14994,25 +15642,26 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aAY" = (
-/obj/item/weapon/shovel{
- pixel_x = 8
- },
-/obj/item/weapon/shovel{
- pixel_x = -8
- },
-/obj/item/weapon/shovel,
-/obj/structure/table/rack,
+"aBL" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_airlock)
+"aBM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
pixel_y = 0
},
-/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aAZ" = (
+"aBN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -15024,7 +15673,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aBa" = (
+"aBO" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -15040,7 +15689,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aBb" = (
+"aBP" = (
/obj/item/stack/material/steel{
amount = 50
},
@@ -15054,23 +15703,23 @@
/obj/structure/table/rack,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aBc" = (
+"aBQ" = (
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aBd" = (
+"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)
-"aBe" = (
+"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)
-"aBf" = (
+"aBT" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger{
pixel_y = 4
@@ -15081,12 +15730,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aBg" = (
+"aBU" = (
/obj/machinery/vending/engivend,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aBh" = (
+"aBV" = (
/obj/machinery/vending/tool,
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/light{
@@ -15096,7 +15745,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aBi" = (
+"aBW" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
dir = 1
@@ -15110,7 +15759,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBj" = (
+"aBX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15124,20 +15773,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor,
+"aBY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15145,9 +15781,9 @@
pixel_y = 0
},
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/engineering/engine_monitoring)
-"aBl" = (
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aBZ" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -15158,7 +15794,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBm" = (
+"aCa" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -15170,7 +15806,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBn" = (
+"aCb" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
@@ -15178,16 +15814,16 @@
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBo" = (
+"aCc" = (
/obj/machinery/papershredder,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBp" = (
+"aCd" = (
/obj/machinery/vending/snack,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBq" = (
+"aCe" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -15204,7 +15840,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBr" = (
+"aCf" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15212,7 +15848,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBs" = (
+"aCg" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15223,7 +15859,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aBt" = (
+"aCh" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Substation";
req_one_access = list(11,24)
@@ -15236,23 +15872,15 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/maintenance/substation/engineering)
-"aBu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aCi" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_monitoring)
-"aBv" = (
+/turf/simulated/floor/plating,
+/area/maintenance/substation/engineering)
+"aCj" = (
/obj/structure/cable/green,
/obj/structure/cable/green{
d1 = 1;
@@ -15266,7 +15894,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aBw" = (
+"aCk" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -15277,7 +15905,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aBx" = (
+"aCl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15291,7 +15919,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aBy" = (
+"aCm" = (
/obj/machinery/door/airlock/engineering{
name = "Engineering Substation";
req_one_access = list(11,24)
@@ -15304,7 +15932,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/engineering)
-"aBz" = (
+"aCn" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -15319,7 +15947,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aBA" = (
+"aCo" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced/steel,
/obj/machinery/door/window/brigdoor/southright{
@@ -15334,7 +15962,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aBB" = (
+"aCp" = (
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
dir = 4
@@ -15349,7 +15977,7 @@
/obj/structure/grille,
/turf/simulated/floor/plating,
/area/security/armoury)
-"aBC" = (
+"aCq" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
d1 = 1;
@@ -15364,7 +15992,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aBD" = (
+"aCr" = (
/obj/machinery/door/blast/regular{
dir = 4;
id = "armoury";
@@ -15374,7 +16002,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aBE" = (
+"aCs" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
@@ -15384,7 +16012,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/armoury)
-"aBF" = (
+"aCt" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -15404,7 +16032,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aBG" = (
+"aCu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Holding Cell";
@@ -15429,7 +16057,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aBH" = (
+"aCv" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -15449,7 +16077,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aBI" = (
+"aCw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
@@ -15459,7 +16087,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aBJ" = (
+"aCx" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15473,7 +16101,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aBK" = (
+"aCy" = (
/obj/structure/cable/green,
/obj/structure/cable/green{
d2 = 2;
@@ -15486,7 +16114,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aBL" = (
+"aCz" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -15498,7 +16126,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aBM" = (
+"aCA" = (
/obj/structure/bed/chair/office/dark{
dir = 1
},
@@ -15526,7 +16154,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aBN" = (
+"aCB" = (
/obj/item/modular_computer/console/preset/security,
/obj/machinery/computer/security/telescreen{
name = "Armoury Cameras";
@@ -15536,7 +16164,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aBO" = (
+"aCC" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -15563,7 +16191,7 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"aBP" = (
+"aCD" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -15577,7 +16205,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBQ" = (
+"aCE" = (
/obj/item/device/radio/intercom{
desc = "Talk... listen through this.";
name = "Station Intercom (Brig Radio)";
@@ -15598,7 +16226,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBR" = (
+"aCF" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15612,7 +16240,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBS" = (
+"aCG" = (
/obj/machinery/computer/arcade,
/obj/structure/cable/green{
d1 = 1;
@@ -15622,7 +16250,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBT" = (
+"aCH" = (
/obj/machinery/computer/arcade,
/obj/machinery/light{
dir = 1
@@ -15630,7 +16258,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBU" = (
+"aCI" = (
/obj/structure/table/standard,
/obj/machinery/librarycomp,
/obj/structure/cable/green{
@@ -15641,7 +16269,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBV" = (
+"aCJ" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -15649,7 +16277,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBW" = (
+"aCK" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -15662,7 +16290,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBX" = (
+"aCL" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -15681,20 +16309,20 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/prison)
-"aBY" = (
+"aCM" = (
/obj/structure/toilet{
pixel_y = 5
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aBZ" = (
+"aCN" = (
/obj/structure/sink{
pixel_y = 22
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aCa" = (
+"aCO" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -15721,7 +16349,7 @@
},
/turf/simulated/floor/plating,
/area/security/prison)
-"aCb" = (
+"aCP" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -15740,45 +16368,45 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aCc" = (
+"aCQ" = (
/obj/structure/sign/nosmoking_2{
pixel_x = -32
},
/obj/structure/window/reinforced,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"aCd" = (
+"aCR" = (
/obj/structure/window/reinforced,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"aCe" = (
+"aCS" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
/obj/structure/window/reinforced,
/turf/simulated/floor/carpet,
/area/lawoffice)
-"aCf" = (
+"aCT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aCg" = (
+"aCU" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aCh" = (
+"aCV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aCi" = (
+"aCW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
desc = "It opens and closes. Bring your relationship affairs here.";
@@ -15790,17 +16418,16 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aCj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aCX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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"
},
-/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aCk" = (
+/area/hallway/primary/starboard)
+"aCY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15815,18 +16442,37 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aCl" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
+"aCZ" = (
+/obj/machinery/firealarm/east,
+/obj/structure/bed/chair{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aCm" = (
+"aDa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aDb" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aDc" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCn" = (
+"aDd" = (
/obj/structure/table/standard,
/obj/structure/sign/nosmoking_1{
pixel_y = 32
@@ -15837,24 +16483,24 @@
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCo" = (
+"aDe" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCp" = (
+"aDf" = (
/obj/item/device/radio/beacon,
/obj/machinery/camera/network/command{
c_tag = "Bridge - Teleporter"
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCq" = (
+"aDg" = (
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCr" = (
+"aDh" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -15867,19 +16513,19 @@
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCs" = (
+"aDi" = (
/obj/effect/decal/cleanable/cobweb2,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/teleporter)
-"aCt" = (
+"aDj" = (
/obj/structure/flora/ausbushes/fernybush,
/turf/simulated/floor/grass,
/area/bridge)
-"aCu" = (
+"aDk" = (
/turf/simulated/floor/grass,
/area/bridge)
-"aCv" = (
+"aDl" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -15897,7 +16543,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aCw" = (
+"aDm" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 4
@@ -15910,7 +16556,7 @@
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/bridge)
-"aCx" = (
+"aDn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -15927,17 +16573,17 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aCy" = (
+"aDo" = (
/obj/effect/floor_decal/corner/paleblue/full,
/turf/simulated/floor/tiled,
/area/bridge)
-"aCz" = (
+"aDp" = (
/obj/structure/toilet{
dir = 4
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aCA" = (
+"aDq" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -15954,10 +16600,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aCB" = (
-/turf/simulated/wall,
-/area/crew_quarters/captain)
-"aCC" = (
+"aDr" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album{
pixel_y = 0
@@ -15968,7 +16611,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCD" = (
+"aDs" = (
/obj/structure/table/rack,
/obj/item/weapon/tank/jetpack/oxygen,
/obj/item/clothing/suit/space/void/captain,
@@ -15982,10 +16625,14 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCE" = (
-/turf/simulated/floor/tiled,
-/area/library)
-"aCF" = (
+"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
},
@@ -15993,7 +16640,7 @@
/mob/living/simple_animal/corgi/fox/Chauncey,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCG" = (
+"aDv" = (
/obj/structure/ladder/up,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'ACCESS RESTRICTED - ONLY AUTHORIZED PERSONNEL'.";
@@ -16002,7 +16649,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCH" = (
+"aDw" = (
/obj/structure/table/wood,
/obj/machinery/computer/skills{
icon_state = "medlaptop"
@@ -16014,7 +16661,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCI" = (
+"aDx" = (
/obj/structure/table/wood,
/obj/item/weapon/paper/monitorkey,
/obj/structure/cable/green{
@@ -16034,7 +16681,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCJ" = (
+"aDy" = (
/obj/structure/table/wood,
/obj/structure/cable/green{
d1 = 1;
@@ -16049,7 +16696,7 @@
/obj/item/weapon/card/id/captains_spare,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aCK" = (
+"aDz" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
@@ -16077,7 +16724,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aCL" = (
+"aDA" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/light{
dir = 8;
@@ -16090,7 +16737,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCM" = (
+"aDB" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4;
icon_state = "intact"
@@ -16098,18 +16745,18 @@
/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCN" = (
+"aDC" = (
/obj/machinery/atmospherics/pipe/simple/visible/cyan{
dir = 4;
icon_state = "intact"
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCO" = (
+"aDD" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCP" = (
+"aDE" = (
/obj/machinery/atmospherics/binary/pump{
dir = 8
},
@@ -16120,25 +16767,14 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCQ" = (
+"aDF" = (
/obj/machinery/atmospherics/portables_connector{
dir = 8
},
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCR" = (
-/turf/simulated/wall/r_wall,
-/area/engineering/engine_airlock)
-"aCS" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/engineering)
-"aCT" = (
+"aDG" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
@@ -16152,7 +16788,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aCU" = (
+"aDH" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 9
@@ -16163,7 +16799,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aCV" = (
+"aDI" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 1
@@ -16173,7 +16809,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aCW" = (
+"aDJ" = (
/obj/effect/floor_decal/industrial/warning{
dir = 5
},
@@ -16182,7 +16818,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aCX" = (
+"aDK" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
@@ -16197,7 +16833,16 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aCY" = (
+"aDL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aDM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -16207,7 +16852,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aCZ" = (
+"aDN" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -16220,7 +16865,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/storage)
-"aDa" = (
+"aDO" = (
/obj/item/stack/material/plasteel{
amount = 10
},
@@ -16242,11 +16887,11 @@
/obj/structure/table/rack,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aDb" = (
+"aDP" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aDc" = (
+"aDQ" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -16258,7 +16903,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aDd" = (
+"aDR" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -16266,7 +16911,7 @@
/obj/structure/closet/wardrobe/engineering_yellow,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDe" = (
+"aDS" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16278,16 +16923,23 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDf" = (
+"aDT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
pixel_y = 0
},
+/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/engine_monitoring)
-"aDg" = (
+/area/engineering/foyer)
+"aDU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -16296,7 +16948,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDh" = (
+"aDV" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16310,11 +16962,11 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDi" = (
+"aDW" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDj" = (
+"aDX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16322,10 +16974,10 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDk" = (
+"aDY" = (
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDl" = (
+"aDZ" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -16341,26 +16993,10 @@
/obj/item/weapon/storage/box/donkpockets,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aDm" = (
+"aEa" = (
/turf/simulated/wall/r_wall,
/area/ai_monitored/storage/eva)
-"aDn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"aDo" = (
+"aEb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "E.V.A. Maintenance";
@@ -16375,11 +17011,11 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aDp" = (
+"aEc" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/ai_monitored/storage/eva)
-"aDq" = (
+"aEd" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -16395,13 +17031,13 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDr" = (
+"aEe" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDs" = (
+"aEf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -16414,7 +17050,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDt" = (
+"aEg" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -16424,14 +17060,14 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDu" = (
+"aEh" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDv" = (
+"aEi" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -16448,7 +17084,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDw" = (
+"aEj" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 5
@@ -16461,7 +17097,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDx" = (
+"aEk" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -16479,7 +17115,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDy" = (
+"aEl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16502,7 +17138,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDz" = (
+"aEm" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16512,7 +17148,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDA" = (
+"aEn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16523,7 +17159,7 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDB" = (
+"aEo" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -16534,7 +17170,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDC" = (
+"aEp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16547,7 +17183,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDD" = (
+"aEq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16561,7 +17197,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDE" = (
+"aEr" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
@@ -16572,7 +17208,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDF" = (
+"aEs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -16588,7 +17224,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDG" = (
+"aEt" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -16604,7 +17240,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDH" = (
+"aEu" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16655,7 +17291,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aDI" = (
+"aEv" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -16666,15 +17302,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aDJ" = (
+"aEw" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aDK" = (
+"aEx" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aDL" = (
+"aEy" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -16701,7 +17337,7 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"aDM" = (
+"aEz" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -16720,7 +17356,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDN" = (
+"aEA" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -16728,7 +17364,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDO" = (
+"aEB" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16743,7 +17379,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDP" = (
+"aEC" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -16751,7 +17387,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDQ" = (
+"aED" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -16764,7 +17400,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDR" = (
+"aEE" = (
/obj/machinery/door/blast/regular{
dir = 4;
id = "Cell 3";
@@ -16774,7 +17410,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDS" = (
+"aEF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 6
@@ -16784,7 +17420,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDT" = (
+"aEG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
density = 0;
@@ -16808,7 +17444,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aDU" = (
+"aEH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -16822,7 +17458,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDV" = (
+"aEI" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -16834,7 +17470,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aDW" = (
+"aEJ" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -16846,21 +17482,21 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aDX" = (
+"aEK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/banner,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aDY" = (
+"aEL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/papershredder,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aDZ" = (
+"aEM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -16868,14 +17504,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aEa" = (
+"aEN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aEb" = (
+"aEO" = (
/obj/structure/table/wood,
/obj/item/weapon/folder{
pixel_x = 5;
@@ -16904,7 +17540,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aEc" = (
+"aEP" = (
/obj/machinery/atm{
pixel_x = -32
},
@@ -16914,40 +17550,30 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aEd" = (
-/obj/machinery/computer/guestpass{
- pixel_x = 32;
- pixel_y = 0
+"aEQ" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_x = 0
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aEe" = (
+"aER" = (
+/obj/machinery/door/airlock/highsecurity{
+ id_tag = "bunker1";
+ name = "Vault Access";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aES" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 10
},
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"aEf" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"aEg" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"aEh" = (
-/obj/machinery/shieldwallgen,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"aEi" = (
-/obj/machinery/shieldwallgen,
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -16955,7 +17581,54 @@
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aEj" = (
+"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;
@@ -16964,7 +17637,7 @@
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aEk" = (
+"aEY" = (
/obj/structure/flora/ausbushes/ppflowers,
/obj/machinery/light{
dir = 8;
@@ -16973,11 +17646,11 @@
},
/turf/simulated/floor/grass,
/area/bridge)
-"aEl" = (
+"aEZ" = (
/obj/structure/flora/ausbushes/brflowers,
/turf/simulated/floor/grass,
/area/bridge)
-"aEm" = (
+"aFa" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -16992,7 +17665,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aEn" = (
+"aFb" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/cable/green{
d1 = 4;
@@ -17001,11 +17674,11 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aEo" = (
+"aFc" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aEp" = (
+"aFd" = (
/obj/structure/window/reinforced/tinted{
dir = 4;
icon_state = "twindow"
@@ -17021,7 +17694,7 @@
/obj/item/weapon/bikehorn/rubberducky,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aEq" = (
+"aFe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -17030,7 +17703,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aEr" = (
+"aFf" = (
/obj/machinery/door/airlock{
name = "Private Restroom"
},
@@ -17042,7 +17715,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aEs" = (
+"aFg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -17051,7 +17724,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEt" = (
+"aFh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
@@ -17059,7 +17732,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEu" = (
+"aFi" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/captain,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -17070,7 +17743,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEv" = (
+"aFj" = (
/obj/machinery/papershredder,
/obj/item/weapon/storage/secure/safe{
pixel_x = -28;
@@ -17078,7 +17751,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEw" = (
+"aFk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -17097,7 +17770,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEx" = (
+"aFl" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/structure/cable/green{
@@ -17121,7 +17794,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aEy" = (
+"aFm" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
@@ -17145,7 +17818,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aEz" = (
+"aFn" = (
/obj/machinery/light{
dir = 8
},
@@ -17154,13 +17827,13 @@
},
/turf/simulated/floor/asteroid/ash/rocky,
/area/crew_quarters/captain)
-"aEA" = (
+"aFo" = (
/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
dir = 8
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aEB" = (
+"aFp" = (
/obj/machinery/atmospherics/binary/circulator{
anchored = 1;
dir = 4;
@@ -17169,14 +17842,14 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aEC" = (
+"aFq" = (
/obj/machinery/atmospherics/pipe/simple/visible/yellow{
icon_state = "intact";
dir = 5
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aED" = (
+"aFr" = (
/obj/machinery/atmospherics/valve/digital{
dir = 1;
icon_state = "map_valve0";
@@ -17184,13 +17857,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aEE" = (
+"aFs" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aEF" = (
+"aFt" = (
/obj/machinery/door/airlock/maintenance_hatch{
frequency = 1379;
icon_state = "door_locked";
@@ -17210,13 +17883,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aEG" = (
+"aFu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aEH" = (
+"aFv" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -17227,7 +17900,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aEI" = (
+"aFw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 6
@@ -17242,7 +17915,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aEJ" = (
+"aFx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17273,7 +17946,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aEK" = (
+"aFy" = (
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
dir = 8
@@ -17291,7 +17964,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aEL" = (
+"aFz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17311,7 +17984,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aEM" = (
+"aFA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -17326,7 +17999,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aEN" = (
+"aFB" = (
/obj/item/stack/material/glass{
amount = 50
},
@@ -17343,15 +18016,15 @@
/obj/structure/table/rack,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aEO" = (
+"aFC" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aEP" = (
+"aFD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aEQ" = (
+"aFE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -17363,7 +18036,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aER" = (
+"aFF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering EVA Storage";
@@ -17376,7 +18049,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aES" = (
+"aFG" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17389,7 +18062,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aET" = (
+"aFH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -17409,7 +18082,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEU" = (
+"aFI" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17428,7 +18101,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEV" = (
+"aFJ" = (
/obj/item/weapon/stool/padded,
/obj/structure/cable/green{
d1 = 4;
@@ -17447,7 +18120,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEW" = (
+"aFK" = (
/obj/item/weapon/stool/padded,
/obj/structure/cable/green{
d1 = 4;
@@ -17466,7 +18139,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEX" = (
+"aFL" = (
/obj/item/weapon/stool/padded,
/obj/structure/cable/green{
d1 = 4;
@@ -17485,7 +18158,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEY" = (
+"aFM" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17507,7 +18180,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aEZ" = (
+"aFN" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17521,7 +18194,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aFa" = (
+"aFO" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -17529,7 +18202,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aFb" = (
+"aFP" = (
/obj/structure/table/standard,
/obj/machinery/microwave{
pixel_x = -2;
@@ -17544,7 +18217,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aFc" = (
+"aFQ" = (
/obj/machinery/light/small{
dir = 8
},
@@ -17553,14 +18226,17 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFd" = (
+"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)
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFe" = (
+"aFT" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -17577,7 +18253,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFf" = (
+"aFU" = (
/obj/machinery/light{
dir = 1
},
@@ -17594,7 +18270,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFg" = (
+"aFV" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue/full{
@@ -17607,22 +18283,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFh" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_airlock)
-"aFi" = (
+"aFW" = (
/obj/machinery/alarm{
pixel_y = 23
},
@@ -17632,14 +18293,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFj" = (
+"aFX" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFk" = (
+"aFY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Security Voidsuits";
@@ -17647,10 +18308,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFl" = (
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aFm" = (
+"aFZ" = (
/obj/structure/table/rack,
/obj/item/clothing/mask/breath,
/obj/item/clothing/head/helmet/space/void/security,
@@ -17665,11 +18323,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aFn" = (
+"aGa" = (
/obj/effect/floor_decal/corner/blue/full,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFo" = (
+"aGb" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -17678,7 +18336,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFp" = (
+"aGc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -17693,7 +18351,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFq" = (
+"aGd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -17719,7 +18377,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFr" = (
+"aGe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17739,7 +18397,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFs" = (
+"aGf" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -17757,7 +18415,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFt" = (
+"aGg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17782,7 +18440,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFu" = (
+"aGh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
@@ -17796,7 +18454,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFv" = (
+"aGi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17828,7 +18486,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFw" = (
+"aGj" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -17847,7 +18505,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFx" = (
+"aGk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17864,7 +18522,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFy" = (
+"aGl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17883,7 +18541,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFz" = (
+"aGm" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -17897,7 +18555,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFA" = (
+"aGn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -17917,7 +18575,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFB" = (
+"aGo" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -17932,7 +18590,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFC" = (
+"aGp" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -17942,7 +18600,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFD" = (
+"aGq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -17954,7 +18612,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aFE" = (
+"aGr" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -17966,7 +18624,7 @@
/obj/machinery/papershredder,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aFF" = (
+"aGs" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -17975,7 +18633,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aFG" = (
+"aGt" = (
/obj/structure/closet/secure_closet/warden,
/obj/item/device/megaphone,
/obj/item/weapon/crowbar,
@@ -17989,7 +18647,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aFH" = (
+"aGu" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -18019,7 +18677,7 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"aFI" = (
+"aGv" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -18030,7 +18688,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFJ" = (
+"aGw" = (
/obj/machinery/flasher{
id = "permflash";
name = "Floor mounted flash";
@@ -18041,18 +18699,18 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFK" = (
+"aGx" = (
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFL" = (
+"aGy" = (
/obj/structure/table/standard,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 6
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFM" = (
+"aGz" = (
/obj/structure/table/standard,
/obj/item/weapon/newspaper,
/obj/machinery/atmospherics/pipe/simple/hidden{
@@ -18060,14 +18718,14 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFN" = (
+"aGA" = (
/obj/item/weapon/stool/padded,
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFO" = (
+"aGB" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18088,7 +18746,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFP" = (
+"aGC" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
@@ -18099,7 +18757,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFQ" = (
+"aGD" = (
/obj/structure/bed,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -18110,7 +18768,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aFR" = (
+"aGE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18138,7 +18796,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFS" = (
+"aGF" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -18150,7 +18808,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aFT" = (
+"aGG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
desc = "It opens and closes. Bring your relationship affairs here.";
@@ -18170,7 +18828,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFU" = (
+"aGH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18184,7 +18842,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFV" = (
+"aGI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18199,7 +18857,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFW" = (
+"aGJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -18217,7 +18875,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFX" = (
+"aGK" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -18229,7 +18887,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFY" = (
+"aGL" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -18243,7 +18901,7 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aFZ" = (
+"aGM" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
@@ -18262,37 +18920,96 @@
},
/turf/simulated/floor/wood,
/area/lawoffice)
-"aGa" = (
-/obj/item/device/radio/intercom{
+"aGN" = (
+/obj/machinery/alarm{
dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/structure/bed/chair{
+ dir = 8
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aGb" = (
-/turf/simulated/wall/r_wall,
-/area/hallway/primary/starboard)
-"aGc" = (
+"aGO" = (
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ control_area = "\improper Vault";
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Vault lethal turret control";
+ pixel_x = -28;
+ pixel_y = 0;
+ req_access = list(20)
+ },
+/obj/structure/sign/securearea{
+ name = "\improper ONLY COMMAND STAFF";
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aGP" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aGQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ name = "\improper ONLY COMMAND STAFF";
+ pixel_y = 32
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"aGR" = (
/obj/machinery/computer/teleporter,
/turf/simulated/floor/plating,
/area/teleporter)
-"aGd" = (
+"aGS" = (
/obj/machinery/teleport/station,
/turf/simulated/floor/plating,
/area/teleporter)
-"aGe" = (
+"aGT" = (
/obj/machinery/teleport/hub,
/obj/effect/decal/warning_stripes,
/turf/simulated/floor/plating,
/area/teleporter)
-"aGf" = (
+"aGU" = (
/obj/structure/table/rack,
/obj/item/weapon/tank/oxygen,
/obj/item/clothing/mask/gas,
/turf/simulated/floor/plating,
/area/teleporter)
-"aGg" = (
+"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
@@ -18300,7 +19017,7 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/teleporter)
-"aGh" = (
+"aGX" = (
/obj/machinery/light_switch{
pixel_x = 24
},
@@ -18315,16 +19032,16 @@
},
/turf/simulated/floor/tiled,
/area/teleporter)
-"aGi" = (
+"aGY" = (
/obj/structure/flora/ausbushes/brflowers,
/obj/structure/flora/ausbushes/ppflowers,
/turf/simulated/floor/grass,
/area/bridge)
-"aGj" = (
+"aGZ" = (
/obj/structure/flora/ausbushes/lavendergrass,
/turf/simulated/floor/grass,
/area/bridge)
-"aGk" = (
+"aHa" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -18340,7 +19057,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"aGl" = (
+"aHb" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 1
@@ -18352,7 +19069,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aGm" = (
+"aHc" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Command Deck Entrance";
dir = 1
@@ -18363,11 +19080,11 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aGn" = (
+"aHd" = (
/obj/structure/curtain/open/shower,
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aGo" = (
+"aHe" = (
/obj/item/device/radio/intercom{
frequency = 1459;
pixel_x = 0;
@@ -18378,7 +19095,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/captain)
-"aGp" = (
+"aHf" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigar,
/obj/item/weapon/flame/lighter/zippo,
@@ -18389,7 +19106,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGq" = (
+"aHg" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
@@ -18399,11 +19116,11 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGr" = (
+"aHh" = (
/obj/structure/displaycase,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGs" = (
+"aHi" = (
/obj/machinery/light_switch{
pixel_y = -24
},
@@ -18412,7 +19129,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGt" = (
+"aHj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
dir = 5
@@ -18422,7 +19139,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGu" = (
+"aHk" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
req_access = list(20)
@@ -18435,7 +19152,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGv" = (
+"aHl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
@@ -18444,7 +19161,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGw" = (
+"aHm" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -18452,7 +19169,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGx" = (
+"aHn" = (
/obj/structure/table/wood,
/obj/machinery/photocopier/faxmachine{
department = "Captain's Office"
@@ -18464,7 +19181,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aGy" = (
+"aHo" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -18489,7 +19206,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aGz" = (
+"aHp" = (
/obj/machinery/atmospherics/valve/digital{
name = "Emergency Cooling Valve 2";
icon_state = "map_valve0";
@@ -18497,7 +19214,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aGA" = (
+"aHq" = (
/obj/machinery/power/generator{
anchored = 1
},
@@ -18508,7 +19225,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aGB" = (
+"aHr" = (
/obj/machinery/power/generator{
anchored = 1
},
@@ -18523,7 +19240,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aGC" = (
+"aHs" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -18532,7 +19249,7 @@
/obj/machinery/atmospherics/pipe/simple/visible/green,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aGD" = (
+"aHt" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -18540,7 +19257,22 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aGE" = (
+"aHu" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_airlock)
+"aHv" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/power/apc{
dir = 2;
@@ -18554,7 +19286,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aGF" = (
+"aHw" = (
/obj/effect/floor_decal/industrial/warning{
dir = 6
},
@@ -18572,7 +19304,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_airlock)
-"aGG" = (
+"aHx" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/closet/radiation,
/obj/item/clothing/glasses/meson,
@@ -18583,7 +19315,93 @@
},
/turf/simulated/floor/tiled,
/area/engineering/engine_monitoring)
-"aGH" = (
+"aHy" = (
+/obj/machinery/light,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aHz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/engineering/storage)
+"aHA" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/flashlight/heavy,
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"aHB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"aHC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"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)
+"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)
+"aHF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"aHG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering EVA Storage";
+ req_one_access = list(11,24)
+ },
+/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)
+"aHH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -18597,7 +19415,899 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aGI" = (
+"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;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHK" = (
+/obj/structure/table/wood/gamblingtable,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHL" = (
+/obj/structure/table/wood/gamblingtable,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHM" = (
+/obj/structure/table/wood/gamblingtable,
+/obj/item/weapon/book/manual/supermatter_engine,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHN" = (
+/obj/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHO" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHP" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/drinkingglasses{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHQ" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aHR" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/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/blue/full,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aHS" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/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{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"aHU" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/welding,
+/obj/item/weapon/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/blue/diagonal,
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aHW" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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/weapon/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{
+ dir = 2
+ },
+/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/blue{
+ icon_state = "corner_white";
+ 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)
+ },
+/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/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.7;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "Security Lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/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/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.7;
+ name = "Security Wing";
+ req_access = list(63)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "Security Lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/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)
+"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)
+"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)
+"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)
+"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)
+"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)
+"aIs" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/security/brig)
+"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/dark,
+/area/security/warden)
+"aIu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/warden)
+"aIv" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/dark,
+/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/dark,
+/area/security/warden)
+"aIx" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Warden's Office";
+ req_access = list(3)
+ },
+/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
+ },
+/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/item/weapon/stool/padded,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1;
+ icon_state = "map"
+ },
+/turf/simulated/floor/tiled,
+/area/security/prison)
+"aIB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/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 = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "Security - Corridor Camera 3";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/door_timer/cell_4{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aIG" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/item/device/radio/intercom/locked{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"aIH" = (
+/obj/machinery/door/firedoor{
+ enable_smart_generation = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aII" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/starboard)
+"aIJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access = list(17)
+ },
+/obj/machinery/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 = 1;
+ 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"
+ },
+/obj/structure/sign/flag/nanotrasen/left,
+/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"
+ },
+/obj/structure/sign/flag/nanotrasen/right,
+/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/effect/floor_decal/corner/paleblue/diagonal,
+/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)
+ },
+/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/machinery/account_database,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/captain)
+"aIR" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 8;
+ icon_state = "circ-off"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"aIS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ icon_state = "intact";
+ 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
+ },
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"aIX" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(11)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/engine_monitoring)
+"aIY" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/engineering/engine_monitoring)
+"aIZ" = (
/obj/structure/table/standard,
/obj/item/device/suit_cooling_unit,
/obj/item/device/suit_cooling_unit,
@@ -18633,93 +20343,78 @@
/obj/item/device/pipe_painter,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aGJ" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
+"aJa" = (
+/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
-/area/engineering/engine_monitoring)
-"aGK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
+/area/engineering/storage)
+"aJb" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = -30
},
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"aJc" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/storage)
+"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{
- icon_state = "rwindow";
dir = 8
},
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/engineering/storage)
-"aGL" = (
-/obj/structure/table/standard,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/flashlight/heavy,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Engineering Hardsuits";
+ req_access = list(11)
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aGM" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
+"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 Hardsuits";
+ req_access = list(11)
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aGN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+"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 Hardsuits";
+ req_access = list(11)
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aGO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
+"aJg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/suit_cycler/engineering,
/turf/simulated/floor/tiled,
/area/engineering/storage)
-"aGP" = (
-/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)
-"aGQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aGR" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering EVA Storage";
- req_one_access = list(11,24)
- },
-/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)
-"aGS" = (
+"aJh" = (
/obj/machinery/newscaster{
pixel_x = -27
},
@@ -18729,1039 +20424,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aGT" = (
-/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;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGV" = (
-/obj/structure/table/wood/gamblingtable,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGW" = (
-/obj/structure/table/wood/gamblingtable,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGX" = (
-/obj/structure/table/wood/gamblingtable,
-/obj/item/weapon/book/manual/supermatter_engine,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGY" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aGZ" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aHa" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/drinkingglasses{
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aHb" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aHc" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/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/blue/full,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHd" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/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)
-"aHe" = (
-/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{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/ai_monitored/storage/eva)
-"aHf" = (
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/welding,
-/obj/item/weapon/storage/belt/utility,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHg" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/blue/diagonal,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHh" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHi" = (
-/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/weapon/ladder_mobile,
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHj" = (
-/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{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/ai_monitored/storage/eva)
-"aHk" = (
-/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/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/ai_monitored/storage/eva)
-"aHl" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/hos)
-"aHm" = (
-/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)
-"aHn" = (
-/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)
-"aHo" = (
-/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)
-"aHp" = (
-/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)
- },
-/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)
-"aHq" = (
-/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)
-"aHr" = (
-/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)
-"aHs" = (
-/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)
-"aHt" = (
-/turf/simulated/wall/r_wall,
-/area/security/lobby)
-"aHu" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/glass_security{
- id_tag = "BrigFoyer";
- layer = 2.7;
- name = "Security Wing";
- req_access = list(63)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "Security Lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"aHv" = (
-/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)
-"aHw" = (
-/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{
- id_tag = "BrigFoyer";
- layer = 2.7;
- name = "Security Wing";
- req_access = list(63)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "Security Lockdown";
- name = "Security Blast Door";
- opacity = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"aHx" = (
-/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)
-"aHy" = (
-/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)
-"aHz" = (
-/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)
-"aHA" = (
-/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)
-"aHB" = (
-/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)
-"aHC" = (
-/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)
-"aHD" = (
-/obj/structure/sign/nosmoking_2,
-/turf/simulated/wall,
-/area/security/brig)
-"aHE" = (
-/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/dark,
-/area/security/warden)
-"aHF" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"aHG" = (
-/obj/machinery/hologram/holopad,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/warden)
-"aHH" = (
-/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/dark,
-/area/security/warden)
-"aHI" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Warden's Office";
- req_access = list(3)
- },
-/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
- },
-/turf/simulated/floor/tiled,
-/area/security/warden)
-"aHJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aHK" = (
-/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)
-"aHL" = (
-/obj/item/weapon/stool/padded,
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1;
- icon_state = "map"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aHM" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aHN" = (
-/obj/structure/table/standard,
-/obj/item/toy/blink,
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aHO" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/security/prison)
-"aHP" = (
-/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)
-"aHQ" = (
-/obj/structure/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 = "tube1";
- pixel_y = 0
- },
-/obj/machinery/camera/network/security{
- c_tag = "Security - Corridor Camera 3";
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/door_timer/cell_4{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"aHR" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/item/device/radio/intercom/locked{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"aHS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/starboard)
-"aHT" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 4
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aHU" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/firedoor,
-/obj/structure/sign/drop{
- pixel_x = -32;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aHV" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aHW" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aHX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- name = "Teleport Access";
- req_access = list(17)
- },
-/obj/machinery/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 = 1;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled,
-/area/teleporter)
-"aHY" = (
-/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"
- },
-/obj/structure/sign/flag/nanotrasen/left,
-/turf/simulated/floor/plating,
-/area/bridge)
-"aHZ" = (
-/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"
- },
-/obj/structure/sign/flag/nanotrasen/right,
-/turf/simulated/floor/plating,
-/area/bridge)
-"aIa" = (
-/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)
-"aIb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/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)
- },
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"aIc" = (
-/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)
-"aId" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"aIe" = (
-/obj/machinery/account_database,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"aIf" = (
-/obj/machinery/atmospherics/binary/circulator{
- anchored = 1;
- dir = 8;
- icon_state = "circ-off"
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIg" = (
-/obj/machinery/atmospherics/pipe/simple/visible/green{
- icon_state = "intact";
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIh" = (
-/obj/machinery/atmospherics/pipe/simple/visible/black{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIi" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/green{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIj" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/green,
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIk" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIl" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/engineering/engine_room)
-"aIm" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(11)
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/engineering/engine_monitoring)
-"aIn" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/engineering/engine_monitoring)
-"aIo" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/photocopier,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aIp" = (
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIq" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIr" = (
-/obj/structure/dispenser/oxygen,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIs" = (
-/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 Hardsuits";
- req_access = list(11)
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIt" = (
-/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 Hardsuits";
- req_access = list(11)
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIu" = (
-/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 Hardsuits";
- req_access = list(11)
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIv" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/suit_cycler/engineering,
-/turf/simulated/floor/tiled,
-/area/engineering/storage)
-"aIw" = (
-/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 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"aIx" = (
+"aJi" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19770,7 +20433,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aIy" = (
+"aJj" = (
/obj/item/weapon/stool/padded,
/obj/structure/cable{
d1 = 1;
@@ -19787,12 +20450,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aIz" = (
+"aJk" = (
/obj/structure/table/wood/gamblingtable,
/obj/item/device/flashlight/lamp/green,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aIA" = (
+"aJl" = (
/obj/item/weapon/stool/padded,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -19802,11 +20465,11 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aIB" = (
+"aJm" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aIC" = (
+"aJn" = (
/obj/structure/bookcase/manuals/engineering,
/obj/item/weapon/book/manual/atmospipes,
/obj/item/weapon/book/manual/engineering_guide,
@@ -19816,7 +20479,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aID" = (
+"aJo" = (
/obj/machinery/requests_console{
department = "EVA";
pixel_x = -32;
@@ -19834,7 +20497,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aIE" = (
+"aJp" = (
/obj/structure/table/reinforced,
/obj/machinery/camera/network/security{
c_tag = "EVA - Starboard Camera";
@@ -19848,7 +20511,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aIF" = (
+"aJq" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -19862,7 +20525,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aIG" = (
+"aJr" = (
/obj/machinery/suit_cycler/security,
/obj/effect/floor_decal/corner/blue/full{
icon_state = "corner_white_full";
@@ -19870,20 +20533,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aIH" = (
+"aJs" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aII" = (
+"aJt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aIJ" = (
+"aJu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -19897,7 +20560,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aIK" = (
+"aJv" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19906,7 +20569,7 @@
/obj/machinery/papershredder,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aIL" = (
+"aJw" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -19915,7 +20578,7 @@
/obj/machinery/suit_cycler/hos,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aIM" = (
+"aJx" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -19928,7 +20591,7 @@
/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aIN" = (
+"aJy" = (
/obj/structure/bookcase/manuals,
/obj/item/weapon/book/manual/security_space_law,
/obj/item/weapon/book/manual/security_space_law,
@@ -19936,7 +20599,7 @@
/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIO" = (
+"aJz" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -19949,7 +20612,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIP" = (
+"aJA" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -19957,7 +20620,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIQ" = (
+"aJB" = (
/obj/machinery/light{
dir = 1
},
@@ -19971,7 +20634,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIR" = (
+"aJC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -19985,7 +20648,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIS" = (
+"aJD" = (
/obj/structure/banner,
/obj/machinery/status_display{
pixel_x = 0;
@@ -19993,7 +20656,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aIT" = (
+"aJE" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -20020,7 +20683,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aIU" = (
+"aJF" = (
/obj/machinery/computer/secure_data,
/obj/structure/cable/green{
d1 = 1;
@@ -20037,7 +20700,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aIV" = (
+"aJG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -20046,7 +20709,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aIW" = (
+"aJH" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20061,7 +20724,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aIX" = (
+"aJI" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
@@ -20079,7 +20742,7 @@
/obj/item/weapon/hand_labeler,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aIY" = (
+"aJJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20088,7 +20751,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aIZ" = (
+"aJK" = (
/obj/machinery/door/airlock/glass_security{
name = "Warden's Office";
req_access = list(3)
@@ -20102,7 +20765,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/dark,
/area/security/brig)
-"aJa" = (
+"aJL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20115,7 +20778,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aJb" = (
+"aJM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 9
@@ -20128,7 +20791,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aJc" = (
+"aJN" = (
/obj/structure/table/standard,
/obj/item/weapon/book/manual/security_space_law,
/obj/item/device/eftpos{
@@ -20137,7 +20800,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aJd" = (
+"aJO" = (
/obj/machinery/light,
/obj/machinery/camera/network/security{
c_tag = "Security - Warden's Office";
@@ -20151,7 +20814,7 @@
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aJe" = (
+"aJP" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -20169,7 +20832,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/security/warden)
-"aJf" = (
+"aJQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -20197,18 +20860,18 @@
},
/turf/simulated/floor/plating,
/area/security/warden)
-"aJg" = (
+"aJR" = (
/obj/machinery/portable_atmospherics/powered/scrubber/huge,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJh" = (
+"aJS" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJi" = (
+"aJT" = (
/obj/item/weapon/stool/padded,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -20216,14 +20879,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJj" = (
+"aJU" = (
/obj/structure/table/standard,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJk" = (
+"aJV" = (
/obj/structure/table/standard,
/obj/item/weapon/dice,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -20231,14 +20894,14 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJl" = (
+"aJW" = (
/obj/item/weapon/stool/padded,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJm" = (
+"aJX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20254,7 +20917,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJn" = (
+"aJY" = (
/obj/structure/table/standard,
/obj/item/weapon/storage/box/cups,
/obj/structure/cable/green{
@@ -20264,14 +20927,14 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJo" = (
+"aJZ" = (
/obj/structure/toilet{
pixel_x = 0;
pixel_y = 5
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aJp" = (
+"aKa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
id_tag = "";
@@ -20289,7 +20952,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aJq" = (
+"aKb" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -20300,26 +20963,32 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJr" = (
+"aKc" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJs" = (
+"aKd" = (
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJt" = (
+"aKe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aKf" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/atm{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJu" = (
+"aKg" = (
/obj/structure/sign/directions/evac{
dir = 8;
icon_state = "direction_evac";
@@ -20338,56 +21007,25 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJv" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aJw" = (
-/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)
-"aJx" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aJy" = (
+"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/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aJz" = (
+"aKk" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "sbridgedoor";
name = "Bridge";
@@ -20399,7 +21037,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJA" = (
+"aKl" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20414,7 +21052,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJB" = (
+"aKm" = (
/obj/effect/floor_decal/corner/paleblue/full,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -20425,7 +21063,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJC" = (
+"aKn" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 10
@@ -20440,7 +21078,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJD" = (
+"aKo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -20453,7 +21091,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJE" = (
+"aKp" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -20467,7 +21105,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJF" = (
+"aKq" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 10
@@ -20478,7 +21116,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJG" = (
+"aKr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -20492,7 +21130,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJH" = (
+"aKs" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 10
@@ -20503,7 +21141,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJI" = (
+"aKt" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 10
@@ -20515,7 +21153,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJJ" = (
+"aKu" = (
/obj/structure/noticeboard{
pixel_y = 32
},
@@ -20525,14 +21163,14 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJK" = (
+"aKv" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 4
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJL" = (
+"aKw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -20544,14 +21182,14 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aJM" = (
+"aKx" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJN" = (
+"aKy" = (
/obj/structure/bed/chair/comfy/brown{
dir = 8
},
@@ -20561,7 +21199,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aJO" = (
+"aKz" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -20582,7 +21220,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aJP" = (
+"aKA" = (
/obj/structure/bed/chair/comfy/brown,
/obj/structure/cable/green{
d1 = 2;
@@ -20591,14 +21229,14 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aJQ" = (
+"aKB" = (
/obj/structure/bed/chair/comfy/brown,
/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aJR" = (
+"aKC" = (
/obj/machinery/power/apc{
dir = 1;
name = "north bump";
@@ -20611,7 +21249,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aJS" = (
+"aKD" = (
/obj/structure/table/wood,
/obj/machinery/camera/network/command{
c_tag = "Bridge - Captain's Office West"
@@ -20622,17 +21260,17 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aJT" = (
+"aKE" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aJU" = (
+"aKF" = (
/obj/structure/bed/chair/comfy/brown{
dir = 4
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aJV" = (
+"aKG" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -20647,7 +21285,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aJW" = (
+"aKH" = (
/obj/structure/filingcabinet,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -20659,25 +21297,25 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aJX" = (
+"aKI" = (
/obj/machinery/suit_cycler/captain,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aJY" = (
+"aKJ" = (
/obj/machinery/atmospherics/pipe/simple/visible/black,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aJZ" = (
+"aKK" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
icon_state = "intact";
dir = 5
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aKa" = (
+"aKL" = (
/obj/machinery/atmospherics/pipe/simple/visible/black,
/obj/machinery/atmospherics/pipe/simple/visible/green{
icon_state = "intact";
@@ -20685,14 +21323,14 @@
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aKb" = (
+"aKM" = (
/obj/machinery/atmospherics/pipe/simple/visible/green{
icon_state = "intact";
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aKc" = (
+"aKN" = (
/obj/machinery/atmospherics/pipe/manifold/visible/green{
icon_state = "map";
dir = 4
@@ -20700,19 +21338,20 @@
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aKd" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
+"aKO" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
},
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"aKe" = (
+/turf/simulated/floor/plating,
+/area/engineering/engine_room)
+"aKP" = (
/obj/machinery/atmospherics/pipe/zpipe/up/supply,
/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
/obj/structure/cable{
@@ -20727,7 +21366,7 @@
roof_type = null
},
/area/maintenance/research_port)
-"aKf" = (
+"aKQ" = (
/obj/structure/ladder/up{
pixel_y = 16
},
@@ -20739,7 +21378,7 @@
roof_type = null
},
/area/maintenance/research_port)
-"aKg" = (
+"aKR" = (
/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
/obj/machinery/atmospherics/pipe/zpipe/down/supply,
/obj/structure/cable{
@@ -20749,22 +21388,22 @@
/obj/structure/lattice/catwalk,
/turf/simulated/open,
/area/maintenance/research_port)
-"aKh" = (
+"aKS" = (
/obj/structure/ladder{
icon_state = "ladder01";
pixel_y = 16
},
/turf/simulated/open,
/area/maintenance/research_port)
-"aKi" = (
+"aKT" = (
/turf/simulated/wall/r_wall,
/area/maintenance/research_port)
-"aKj" = (
+"aKU" = (
/obj/structure/table/rack,
/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aKk" = (
+"aKV" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20773,37 +21412,25 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aKl" = (
+"aKW" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aKm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
+"aKX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "Security Lockdown";
- name = "Security Blast Door";
- opacity = 0
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
},
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/security/brig)
-"aKn" = (
+/obj/machinery/photocopier,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aKY" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -20814,7 +21441,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKo" = (
+"aKZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20827,7 +21454,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKp" = (
+"aLa" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -20838,7 +21465,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKq" = (
+"aLb" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -20849,7 +21476,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKr" = (
+"aLc" = (
/obj/item/weapon/stool/padded,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -20860,7 +21487,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKs" = (
+"aLd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -20873,7 +21500,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKt" = (
+"aLe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20883,7 +21510,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKu" = (
+"aLf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -20892,7 +21519,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKv" = (
+"aLg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -20902,7 +21529,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKw" = (
+"aLh" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 6
@@ -20919,7 +21546,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aKx" = (
+"aLi" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -20933,7 +21560,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aKy" = (
+"aLj" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -20944,14 +21571,14 @@
/obj/item/clothing/head/helmet/space/void/atmos,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aKz" = (
+"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)
-"aKA" = (
+"aLl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -20959,7 +21586,7 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aKB" = (
+"aLm" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -20969,7 +21596,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aKC" = (
+"aLn" = (
/obj/structure/table/reinforced,
/obj/structure/extinguisher_cabinet{
pixel_x = 25;
@@ -20989,7 +21616,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aKD" = (
+"aLo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -21000,7 +21627,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aKE" = (
+"aLp" = (
/obj/structure/filingcabinet,
/obj/machinery/recharger/wallcharger{
pixel_x = -24;
@@ -21012,48 +21639,48 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aKF" = (
+"aLq" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aKG" = (
+"aLr" = (
/obj/structure/table/wood,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aKH" = (
+"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)
-"aKI" = (
+"aLt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aKJ" = (
+"aLu" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aKK" = (
+"aLv" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
/obj/item/device/flashlight/heavy,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aKL" = (
+"aLw" = (
/obj/machinery/newscaster{
pixel_x = -27
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aKM" = (
+"aLx" = (
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aKN" = (
+"aLy" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -21064,7 +21691,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aKO" = (
+"aLz" = (
/obj/structure/table/reinforced/steel,
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -21081,7 +21708,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKP" = (
+"aLA" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -21108,7 +21735,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKQ" = (
+"aLB" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21119,7 +21746,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKR" = (
+"aLC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -21131,14 +21758,14 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKS" = (
+"aLD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKT" = (
+"aLE" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -21153,7 +21780,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aKU" = (
+"aLF" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/computer/cryopod{
@@ -21161,15 +21788,15 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aKV" = (
+"aLG" = (
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aKW" = (
+"aLH" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aKX" = (
+"aLI" = (
/obj/machinery/door/blast/regular{
dir = 4;
id = "Cell 4";
@@ -21179,7 +21806,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aKY" = (
+"aLJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
density = 0;
@@ -21203,20 +21830,65 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aKZ" = (
+"aLK" = (
/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 = 1;
d2 = 4;
icon_state = "1-4"
},
/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aLa" = (
+/area/security/brig)
+"aLL" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/brig)
+"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;
+ dir = 1;
+ 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/light{
dir = 8;
icon_state = "tube1";
@@ -21224,7 +21896,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLb" = (
+"aLO" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -21238,7 +21910,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLc" = (
+"aLP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21252,7 +21924,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLd" = (
+"aLQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21266,7 +21938,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLe" = (
+"aLR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21278,7 +21950,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLf" = (
+"aLS" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -21297,7 +21969,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLg" = (
+"aLT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21314,7 +21986,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLh" = (
+"aLU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21331,13 +22003,27 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLi" = (
+"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/port)
-"aLj" = (
+/area/hallway/primary/starboard)
+"aLW" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -21359,7 +22045,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLk" = (
+"aLX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21368,15 +22054,11 @@
/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/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLl" = (
+"aLY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21402,7 +22084,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLm" = (
+"aLZ" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -21420,7 +22102,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLn" = (
+"aMa" = (
/obj/structure/disposalpipe/junction/yjunction{
icon_state = "pipe-y";
dir = 8
@@ -21449,7 +22131,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aLo" = (
+"aMb" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/door/blast/regular{
density = 0;
@@ -21461,7 +22143,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aLp" = (
+"aMc" = (
/obj/machinery/computer/guestpass{
pixel_x = -32
},
@@ -21473,12 +22155,12 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLq" = (
+"aMd" = (
/obj/effect/floor_decal/corner/paleblue/diagonal,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLr" = (
+"aMe" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -21497,7 +22179,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLs" = (
+"aMf" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -21515,7 +22197,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLt" = (
+"aMg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable/green{
@@ -21534,7 +22216,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLu" = (
+"aMh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21552,7 +22234,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLv" = (
+"aMi" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -21575,7 +22257,7 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLw" = (
+"aMj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21598,7 +22280,7 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLx" = (
+"aMk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -21617,7 +22299,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLy" = (
+"aMl" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -21642,7 +22324,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aLz" = (
+"aMm" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -21651,7 +22333,7 @@
/obj/structure/table/wood,
/turf/simulated/floor/tiled,
/area/bridge)
-"aLA" = (
+"aMn" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -21668,7 +22350,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aLB" = (
+"aMo" = (
/obj/structure/table/wood,
/obj/structure/cable/green{
d1 = 2;
@@ -21685,12 +22367,12 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aLC" = (
+"aMp" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/donut,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aLD" = (
+"aMq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -21699,16 +22381,16 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aLE" = (
+"aMr" = (
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aLF" = (
+"aMs" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/captain,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aLG" = (
+"aMt" = (
/obj/structure/bed/chair/office/bridge{
icon_state = "bridge";
dir = 8
@@ -21736,7 +22418,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aLH" = (
+"aMu" = (
/obj/machinery/photocopier,
/obj/machinery/camera/network/command{
c_tag = "Bridge - Captain's Office East";
@@ -21748,48 +22430,48 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aLI" = (
+"aMv" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 5
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLJ" = (
+"aMw" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 4
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLK" = (
+"aMx" = (
/obj/machinery/atmospherics/pipe/manifold/visible/black,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLL" = (
+"aMy" = (
/obj/machinery/atmospherics/pipe/simple/visible/black{
dir = 10
},
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLM" = (
+"aMz" = (
/obj/machinery/atmospherics/binary/pump/high_power{
icon_state = "map_off";
dir = 1
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLN" = (
+"aMA" = (
/obj/structure/closet/walllocker/emerglocker/south,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLO" = (
+"aMB" = (
/obj/structure/closet/hydrant{
pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aLP" = (
+"aMC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/cable{
@@ -21802,7 +22484,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aLQ" = (
+"aMD" = (
/obj/random/junk,
/obj/effect/floor_decal/industrial/warning/corner{
icon_state = "warningcorner";
@@ -21813,7 +22495,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aLR" = (
+"aME" = (
/obj/machinery/light/small/emergency{
icon_state = "bulb1";
dir = 4
@@ -21823,7 +22505,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aLS" = (
+"aMF" = (
/obj/structure/table/rack,
/obj/random/loot,
/obj/machinery/light/small/emergency{
@@ -21831,14 +22513,14 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aLT" = (
+"aMG" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aLU" = (
+"aMH" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/chief)
-"aLV" = (
+"aMI" = (
/obj/structure/table/rack,
/obj/item/weapon/rig/ce/equipped,
/obj/item/clothing/mask/breath,
@@ -21852,18 +22534,26 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/chief)
-"aLW" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
+"aMJ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd_ammo,
+/obj/item/weapon/rcd,
/obj/structure/window/reinforced{
+ icon_state = "rwindow";
dir = 4
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/window/brigdoor/southright{
+ req_access = list(56)
},
-/turf/simulated/floor/plating,
-/area/library)
-"aLX" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/chief)
+"aMK" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 4
@@ -21875,7 +22565,7 @@
/mob/living/bot/floorbot/floorbob,
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/chief)
-"aLY" = (
+"aML" = (
/obj/machinery/power/apc/high{
dir = 1;
name = "north bump";
@@ -21887,7 +22577,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aLZ" = (
+"aMM" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 1
@@ -21896,14 +22586,14 @@
/obj/machinery/firealarm/north,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aMa" = (
+"aMN" = (
/obj/machinery/alarm{
pixel_y = 22
},
/obj/machinery/papershredder,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aMb" = (
+"aMO" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/obj/item/device/radio/intercom{
@@ -21912,7 +22602,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aMc" = (
+"aMP" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -21933,7 +22623,20 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aMd" = (
+"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{
icon_state = "intact-supply";
dir = 6
@@ -21954,7 +22657,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aMe" = (
+"aMS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -21968,7 +22671,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aMf" = (
+"aMT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 9
@@ -21984,11 +22687,20 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aMg" = (
+"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)
-"aMh" = (
+"aMW" = (
/obj/machinery/light{
dir = 4
},
@@ -22000,28 +22712,28 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aMi" = (
+"aMX" = (
/obj/machinery/light/small{
dir = 8
},
/obj/effect/floor_decal/corner/blue/full,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMj" = (
+"aMY" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Voidsuits";
req_one_access = list(11,24)
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMk" = (
+"aMZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/blue/diagonal,
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMl" = (
+"aNa" = (
/obj/item/weapon/storage/briefcase/inflatable{
pixel_x = 3;
pixel_y = 6
@@ -22035,7 +22747,7 @@
/obj/structure/table/reinforced,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMm" = (
+"aNb" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -22052,7 +22764,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMn" = (
+"aNc" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -22062,7 +22774,7 @@
/obj/item/device/suit_cooling_unit,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMo" = (
+"aNd" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -22076,7 +22788,7 @@
/obj/item/device/suit_cooling_unit,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aMp" = (
+"aNe" = (
/obj/machinery/computer/secure_data,
/obj/structure/sign/goldenplaque{
pixel_x = -32
@@ -22092,7 +22804,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aMq" = (
+"aNf" = (
/obj/structure/bed/chair/comfy/red{
dir = 4
},
@@ -22124,7 +22836,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aMr" = (
+"aNg" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/sec,
/obj/item/weapon/pen/blue{
@@ -22137,21 +22849,21 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aMs" = (
+"aNh" = (
/obj/structure/bed/chair/comfy/black{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aMt" = (
+"aNi" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aMu" = (
+"aNj" = (
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aMv" = (
+"aNk" = (
/obj/structure/table/wood,
/obj/item/device/megaphone,
/obj/item/device/radio,
@@ -22166,7 +22878,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aMw" = (
+"aNl" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -22176,7 +22888,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aMx" = (
+"aNm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
@@ -22190,7 +22902,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aMy" = (
+"aNn" = (
/obj/structure/table/reinforced/steel,
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
@@ -22207,7 +22919,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aMz" = (
+"aNo" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -22228,11 +22940,11 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aMA" = (
+"aNp" = (
/obj/structure/bed/chair/office/dark,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aMB" = (
+"aNq" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -22244,28 +22956,28 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aMC" = (
+"aNr" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aMD" = (
+"aNs" = (
/obj/machinery/door/airlock{
desc = "It opens and closes. A repulsive smell eminates from the door.";
name = "Brig Toilet"
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aME" = (
+"aNt" = (
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aMF" = (
+"aNu" = (
/obj/item/toy/figure/warden,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aMG" = (
+"aNv" = (
/obj/machinery/shower{
dir = 8;
icon_state = "shower";
@@ -22276,41 +22988,41 @@
/obj/structure/curtain/open/shower,
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aMH" = (
+"aNw" = (
/obj/structure/cryofeed{
icon_state = "cryo_rear";
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aMI" = (
+"aNx" = (
/obj/machinery/cryopod{
icon_state = "body_scanner_0";
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aMJ" = (
+"aNy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aMK" = (
+"aNz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aML" = (
+"aNA" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aMM" = (
+"aNB" = (
/obj/machinery/flasher{
id = "permflash";
name = "Floor mounted flash";
@@ -22329,7 +23041,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aMN" = (
+"aNC" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 4";
name = "Cell 4 Locker"
@@ -22340,7 +23052,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aMO" = (
+"aND" = (
/obj/structure/bed,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -22351,41 +23063,33 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aMP" = (
-/obj/structure/disposalpipe/segment,
+"aNE" = (
/obj/structure/cable/green{
- d1 = 2;
+ d1 = 1;
d2 = 8;
- icon_state = "2-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/blue{
+ icon_state = "corner_white";
+ dir = 9
},
/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aMQ" = (
+/area/security/brig)
+"aNF" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"aMS" = (
-/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)
-"aMT" = (
+"aNG" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -22396,20 +23100,20 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMU" = (
+"aNH" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Com";
location = "S2"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMV" = (
+"aNI" = (
/obj/item/device/radio/intercom{
pixel_y = -27
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMW" = (
+"aNJ" = (
/obj/effect/floor_decal/corner/blue{
dir = 10
},
@@ -22419,15 +23123,11 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMX" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aMY" = (
+"aNK" = (
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aMZ" = (
+"aNL" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -22439,33 +23139,32 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNa" = (
+"aNM" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNb" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
+"aNN" = (
+/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/hydroponics)
-"aNc" = (
+/area/hallway/primary/starboard)
+"aNO" = (
/obj/machinery/status_display{
pixel_x = 0;
pixel_y = -32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNd" = (
+"aNP" = (
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNe" = (
+"aNQ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22475,7 +23174,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNf" = (
+"aNR" = (
+/obj/machinery/camera/network/security{
+ c_tag = "Vault - Entrance";
+ dir = 1;
+ network = list("Security","Armoury")
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aNS" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22483,7 +23190,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNg" = (
+"aNT" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -22498,7 +23205,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aNh" = (
+"aNU" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "sbridgedoor";
name = "Bridge";
@@ -22518,7 +23225,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNi" = (
+"aNV" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
@@ -22541,7 +23248,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNj" = (
+"aNW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22559,7 +23266,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNk" = (
+"aNX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -22578,7 +23285,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNl" = (
+"aNY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -22597,7 +23304,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/bridge)
-"aNm" = (
+"aNZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
@@ -22616,7 +23323,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNn" = (
+"aOa" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -22626,7 +23333,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNo" = (
+"aOb" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -22634,14 +23341,14 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/bridge)
-"aNp" = (
+"aOc" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNq" = (
+"aOd" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -22653,7 +23360,7 @@
/obj/item/stack/medical/ointment,
/turf/simulated/floor/tiled,
/area/bridge)
-"aNr" = (
+"aOe" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 1
@@ -22661,7 +23368,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/bridge)
-"aNs" = (
+"aOf" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22672,13 +23379,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aNt" = (
+"aOg" = (
/obj/structure/bed/chair/comfy/brown{
dir = 8
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aNu" = (
+"aOh" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -22698,7 +23405,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aNv" = (
+"aOi" = (
/obj/structure/bed/chair/comfy/brown{
dir = 1
},
@@ -22714,13 +23421,13 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aNw" = (
+"aOj" = (
/obj/structure/bed/chair/comfy/brown{
dir = 1
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aNx" = (
+"aOk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22729,20 +23436,20 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aNy" = (
+"aOl" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aNz" = (
+"aOm" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aNA" = (
+"aOn" = (
/obj/item/modular_computer/console/preset/captain,
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aNB" = (
+"aOo" = (
/obj/structure/table/wood,
/obj/item/device/megaphone,
/obj/structure/cable/green{
@@ -22752,17 +23459,17 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aNC" = (
+"aOp" = (
/obj/machinery/atmospherics/pipe/simple/visible/black,
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aND" = (
+"aOq" = (
/obj/machinery/atmospherics/pipe/simple/visible/green,
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
/area/engineering/engine_room)
-"aNE" = (
+"aOr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -22776,7 +23483,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNF" = (
+"aOs" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -22790,7 +23497,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNG" = (
+"aOt" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/obj/structure/cable{
@@ -22805,7 +23512,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNH" = (
+"aOu" = (
/obj/machinery/door/airlock/maintenance_hatch{
req_access = list(12)
},
@@ -22823,7 +23530,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNI" = (
+"aOv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22837,7 +23544,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNJ" = (
+"aOw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22854,7 +23561,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aNK" = (
+"aOx" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Chief Engineer's Desk";
@@ -22865,10 +23572,10 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aNL" = (
+"aOy" = (
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aNM" = (
+"aOz" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22876,15 +23583,15 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aNN" = (
+"aOA" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aNO" = (
+"aOB" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aNP" = (
+"aOC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -22906,7 +23613,25 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aNQ" = (
+"aOD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/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;
@@ -22920,17 +23645,17 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNR" = (
+"aOG" = (
/obj/structure/disposalpipe/junction/yjunction,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNS" = (
+"aOH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNT" = (
+"aOI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22941,7 +23666,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNU" = (
+"aOJ" = (
/obj/structure/disposalpipe/sortjunction/flipped{
dir = 8;
name = "Engineering Break Room";
@@ -22949,7 +23674,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNV" = (
+"aOK" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -22961,13 +23686,13 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNW" = (
+"aOL" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNX" = (
+"aOM" = (
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
@@ -22975,7 +23700,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aNY" = (
+"aON" = (
/obj/item/device/radio/intercom{
frequency = 1459;
name = "Station Intercom (General)";
@@ -22991,7 +23716,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aNZ" = (
+"aOO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -23001,7 +23726,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aOa" = (
+"aOP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -23009,7 +23734,7 @@
/obj/effect/floor_decal/corner/blue/diagonal,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aOb" = (
+"aOQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "E.V.A.";
@@ -23017,23 +23742,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aOc" = (
+"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)
-"aOd" = (
+"aOS" = (
/obj/structure/table/wood,
/obj/machinery/computer/skills,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aOe" = (
+"aOT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hos)
-"aOf" = (
+"aOU" = (
/obj/machinery/alarm{
dir = 8;
icon_state = "alarm0";
@@ -23045,7 +23770,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aOg" = (
+"aOV" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -23058,13 +23783,13 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aOh" = (
+"aOW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aOi" = (
+"aOX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -23075,7 +23800,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aOj" = (
+"aOY" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -23090,7 +23815,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aOk" = (
+"aOZ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 9
@@ -23107,7 +23832,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aOl" = (
+"aPa" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -23137,7 +23862,7 @@
},
/turf/simulated/floor/plating,
/area/security/brig)
-"aOm" = (
+"aPb" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -23152,19 +23877,19 @@
/obj/item/modular_computer/console/preset/security,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOn" = (
+"aPc" = (
/obj/machinery/computer/station_alert,
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOo" = (
+"aPd" = (
/obj/machinery/papershredder,
/obj/machinery/light_switch{
pixel_y = -23
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOp" = (
+"aPe" = (
/obj/machinery/recharger/wallcharger{
pixel_y = -26
},
@@ -23174,7 +23899,7 @@
/obj/machinery/photocopier,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOq" = (
+"aPf" = (
/obj/machinery/recharger/wallcharger{
pixel_y = -26
},
@@ -23185,7 +23910,7 @@
/obj/item/weapon/folder/sec,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOr" = (
+"aPg" = (
/obj/effect/floor_decal/corner/blue/full{
icon_state = "corner_white_full";
dir = 4
@@ -23208,14 +23933,14 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOs" = (
+"aPh" = (
/obj/structure/toilet/noose{
icon_state = "toilet00";
dir = 1
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aOt" = (
+"aPi" = (
/obj/structure/sink{
dir = 8;
icon_state = "sink";
@@ -23233,11 +23958,11 @@
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aOu" = (
+"aPj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aOv" = (
+"aPk" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -23249,12 +23974,12 @@
},
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aOw" = (
+"aPl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aOx" = (
+"aPm" = (
/obj/structure/window/reinforced,
/obj/structure/table/standard,
/obj/item/weapon/storage/box/donkpockets{
@@ -23264,26 +23989,26 @@
/obj/item/weapon/storage/box/donkpockets,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aOy" = (
+"aPn" = (
/obj/structure/window/reinforced,
/obj/structure/table/standard,
/obj/machinery/microwave,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aOz" = (
+"aPo" = (
/obj/structure/window/reinforced,
/obj/structure/table/standard,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aOA" = (
+"aPp" = (
/obj/machinery/newscaster{
pixel_x = 27
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aOB" = (
+"aPq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -23302,7 +24027,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOC" = (
+"aPr" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
@@ -23312,11 +24037,11 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aOD" = (
+"aPs" = (
/obj/structure/closet/walllocker/emerglocker/west,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aOE" = (
+"aPt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23327,55 +24052,90 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aOF" = (
-/obj/machinery/door/window{
- base_state = "left";
+"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;
- icon_state = "left";
- name = "Hydroponics Backroom";
- req_access = list(35)
+ id = "journalist"
},
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
+/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,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aOG" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 1
+/obj/machinery/door/airlock{
+ name = "Journalist's Office";
+ req_access = list(70)
},
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aOH" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"aOI" = (
-/obj/machinery/vending/hydroseeds{
- prices = list();
- restock_items = 1
+/area/journalistoffice)
+"aPy" = (
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "journalist"
},
-/turf/simulated/floor/tiled,
-/area/maintenance/bar)
-"aOJ" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "journalist"
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aOK" = (
+/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)
},
@@ -23389,7 +24149,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/hallway/primary/starboard)
-"aOL" = (
+"aPB" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -23401,10 +24161,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aOM" = (
+"aPC" = (
/turf/simulated/wall/r_wall,
/area/crew_quarters/heads/hop)
-"aON" = (
+"aPD" = (
+/turf/simulated/wall,
+/area/crew_quarters/heads/hop)
+"aPE" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
req_access = list(57)
@@ -23412,9 +24175,9 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
+/turf/simulated/floor/tiled,
/area/crew_quarters/heads/hop)
-"aOO" = (
+"aPF" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -23430,7 +24193,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aOP" = (
+"aPG" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -23446,10 +24209,10 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aOQ" = (
-/turf/simulated/wall/r_wall,
+"aPH" = (
+/turf/simulated/wall,
/area/bridge/meeting_room)
-"aOR" = (
+"aPI" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -23461,7 +24224,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aOS" = (
+"aPJ" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
@@ -23473,7 +24236,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aOT" = (
+"aPK" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -23496,7 +24259,7 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aOU" = (
+"aPL" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 9
@@ -23517,7 +24280,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aOV" = (
+"aPM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23534,7 +24297,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aOW" = (
+"aPN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
id_tag = "captaindoor";
@@ -23557,7 +24320,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aOX" = (
+"aPO" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -23584,7 +24347,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aOY" = (
+"aPP" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -23601,7 +24364,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aOZ" = (
+"aPQ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -23621,7 +24384,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aPa" = (
+"aPR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23633,7 +24396,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aPb" = (
+"aPS" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -23646,12 +24409,12 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aPc" = (
+"aPT" = (
/obj/item/toy/figure/captain,
/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aPd" = (
+"aPU" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -23663,7 +24426,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aPe" = (
+"aPV" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 4
@@ -23675,14 +24438,14 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aPf" = (
+"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)
-"aPg" = (
+"aPX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -23698,7 +24461,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aPh" = (
+"aPY" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/lockbox/medal,
/obj/structure/cable/green{
@@ -23722,7 +24485,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aPi" = (
+"aPZ" = (
/obj/structure/sign/drop{
pixel_y = -32
},
@@ -23732,19 +24495,19 @@
},
/turf/simulated/open,
/area/engineering/engine_room)
-"aPj" = (
+"aQa" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/zpipe/down/green{
dir = 1
},
/turf/simulated/open,
/area/engineering/engine_room)
-"aPk" = (
+"aQb" = (
/obj/random/junk,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aPl" = (
+"aQc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23754,7 +24517,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aPm" = (
+"aQd" = (
/obj/machinery/button/remote/driver{
id = "enginecore";
name = "Emergency Core Eject";
@@ -23766,10 +24529,10 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/chief)
-"aPn" = (
+"aQe" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aPo" = (
+"aQf" = (
/obj/structure/table/standard,
/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{
pixel_x = -5;
@@ -23779,13 +24542,13 @@
/obj/item/weapon/flame/lighter/zippo,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aPp" = (
+"aQg" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aPq" = (
+"aQh" = (
/obj/structure/table/standard,
/obj/structure/cable/green{
d1 = 1;
@@ -23795,11 +24558,11 @@
/obj/machinery/computer/skills,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aPr" = (
+"aQi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aPs" = (
+"aQj" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -23815,7 +24578,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aPt" = (
+"aQk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23841,7 +24604,7 @@
/obj/structure/window/reinforced/polarized,
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aPu" = (
+"aQl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23851,7 +24614,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPv" = (
+"aQm" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -23867,7 +24630,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPw" = (
+"aQn" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -23886,7 +24649,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPx" = (
+"aQo" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -23898,7 +24661,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPy" = (
+"aQp" = (
/obj/structure/table/rack,
/obj/machinery/power/apc{
dir = 4;
@@ -23916,10 +24679,10 @@
/obj/item/weapon/storage/box/lights/mixed,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPz" = (
+"aQq" = (
/turf/simulated/wall,
/area/engineering/foyer)
-"aPA" = (
+"aQr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -23927,23 +24690,23 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPB" = (
+"aQs" = (
/obj/structure/table/standard,
/obj/machinery/cell_charger,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPC" = (
+"aQt" = (
/obj/item/modular_computer/console/preset/engineering,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPD" = (
+"aQu" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPE" = (
+"aQv" = (
/obj/machinery/button/remote/blast_door{
id = "Singuloth";
name = "Engineering delivery Control";
@@ -23951,14 +24714,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aPF" = (
+"aQw" = (
/obj/machinery/suit_cycler/medical,
/obj/effect/floor_decal/corner/blue/full{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aPG" = (
+"aQx" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/item/weapon/cell/high{
@@ -23982,13 +24745,13 @@
/obj/item/device/radio/off,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aPH" = (
+"aQy" = (
/obj/structure/table/reinforced,
/obj/item/hoist_kit,
/obj/item/weapon/ladder_mobile,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aPI" = (
+"aQz" = (
/obj/machinery/door/firedoor{
dir = 2
},
@@ -24004,7 +24767,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aPJ" = (
+"aQA" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -24012,7 +24775,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aPK" = (
+"aQB" = (
/obj/structure/closet/secure_closet/hos,
/obj/item/device/multitool,
/obj/item/weapon/reagent_containers/spray/pepper,
@@ -24020,26 +24783,26 @@
/obj/item/clothing/head/helmet/space/void/hos,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPL" = (
+"aQC" = (
/obj/item/device/radio/intercom{
pixel_y = -28
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPM" = (
+"aQD" = (
/obj/machinery/newscaster/security_unit{
pixel_y = -30
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPN" = (
+"aQE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPO" = (
+"aQF" = (
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 8
@@ -24054,7 +24817,7 @@
/mob/living/simple_animal/hostile/commanded/dog/columbo,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPP" = (
+"aQG" = (
/obj/machinery/photocopier,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -24066,13 +24829,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/heads/hos)
-"aPQ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
+"aQH" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = 10
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aPR" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/hos)
+"aQI" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -24083,7 +24854,7 @@
/obj/machinery/firealarm/west,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aPS" = (
+"aQJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
@@ -24096,7 +24867,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aPT" = (
+"aQK" = (
/obj/machinery/ringer_button{
id = "brig_ringer";
pixel_x = 24;
@@ -24104,10 +24875,10 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aPU" = (
+"aQL" = (
/turf/simulated/wall/r_wall,
/area/security/prison)
-"aPV" = (
+"aQM" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -24118,7 +24889,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aPW" = (
+"aQN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -24127,7 +24898,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aPX" = (
+"aQO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -24136,7 +24907,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aPY" = (
+"aQP" = (
/obj/machinery/door/airlock{
name = "Brig Showers"
},
@@ -24149,7 +24920,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/freezer,
/area/security/prison)
-"aPZ" = (
+"aQQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -24159,7 +24930,7 @@
/obj/effect/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aQa" = (
+"aQR" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -24168,7 +24939,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQb" = (
+"aQS" = (
/obj/machinery/atmospherics/unary/outlet_injector{
dir = 1;
id = null;
@@ -24176,7 +24947,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQc" = (
+"aQT" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -24184,7 +24955,7 @@
/obj/item/weapon/mop,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQd" = (
+"aQU" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -24192,7 +24963,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQe" = (
+"aQV" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -24200,7 +24971,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQf" = (
+"aQW" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -24213,7 +24984,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQg" = (
+"aQX" = (
/obj/item/toy/prize/deathripley{
desc = "This is Johnny 5. Is he alive?";
name = "Johnny 5"
@@ -24225,26 +24996,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aQh" = (
-/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/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"aQi" = (
+"aQY" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -24256,88 +25008,92 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aQj" = (
+"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/structure/flora/pottedplant/random,
+/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{
+ icon_state = "intact-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 = 10
+ dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aQk" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
},
-/area/outpost/mining_main/eva)
-"aQl" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Library"
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/floor/tiled,
-/area/library)
-"aQm" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aQn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/turf/simulated/floor/wood,
+/area/journalistoffice)
+"aRe" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 1
},
-/obj/structure/window/reinforced{
- dir = 8
+/turf/simulated/floor/wood,
+/area/journalistoffice)
+"aRf" = (
+/obj/item/toy/figure/journalist,
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
},
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/library)
-"aQo" = (
-/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)
-"aQp" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/library)
-"aQq" = (
-/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)
-"aQr" = (
+/turf/simulated/floor/wood,
+/area/journalistoffice)
+"aRg" = (
/obj/item/device/t_scanner,
/obj/structure/table/steel,
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aQs" = (
+"aRh" = (
/obj/machinery/space_heater,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aQt" = (
+"aRi" = (
/turf/simulated/wall,
/area/maintenance/maintcentral)
-"aQu" = (
+"aRj" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable/green{
d1 = 1;
@@ -24348,7 +25104,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aQv" = (
+"aRk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -24363,11 +25119,15 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aQw" = (
+"aRl" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aRm" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aQx" = (
+"aRn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
@@ -24403,7 +25163,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aQy" = (
+"aRo" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -24417,7 +25177,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aQz" = (
+"aRp" = (
/obj/machinery/button/remote/blast_door{
desc = "A remote control-switch for shutters.";
id = "hop_office_desk";
@@ -24439,7 +25199,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aQA" = (
+"aRq" = (
/obj/machinery/computer/guestpass{
pixel_y = 32
},
@@ -24455,7 +25215,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aQB" = (
+"aRr" = (
/obj/machinery/keycard_auth{
pixel_x = 24
},
@@ -24472,11 +25232,11 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aQC" = (
+"aRs" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aQD" = (
+"aRt" = (
/obj/effect/floor_decal/spline/fancy/wood{
icon_state = "spline_fancy";
dir = 4
@@ -24487,7 +25247,7 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aQE" = (
+"aRu" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -24499,21 +25259,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aQF" = (
+"aRv" = (
/obj/structure/bed/chair/office/bridge{
icon_state = "bridge";
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aQG" = (
+"aRw" = (
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aQH" = (
+"aRx" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -24530,7 +25290,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aQI" = (
+"aRy" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Corridor Camera 2";
dir = 4;
@@ -24543,7 +25303,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aQJ" = (
+"aRz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
@@ -24556,7 +25316,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aQK" = (
+"aRA" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -24566,11 +25326,11 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aQL" = (
+"aRB" = (
/obj/structure/flora/pottedplant/random,
/turf/simulated/floor/tiled,
/area/bridge)
-"aQM" = (
+"aRC" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -24594,7 +25354,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aQN" = (
+"aRD" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -24615,7 +25375,7 @@
/obj/item/weapon/hand_labeler,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQO" = (
+"aRE" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -24624,7 +25384,7 @@
/obj/structure/table/wood,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQP" = (
+"aRF" = (
/obj/machinery/light_switch{
pixel_y = -24
},
@@ -24636,7 +25396,7 @@
/obj/structure/banner,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQQ" = (
+"aRG" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24650,7 +25410,7 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQR" = (
+"aRH" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24674,7 +25434,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQS" = (
+"aRI" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24692,7 +25452,7 @@
/obj/machinery/light,
/turf/simulated/floor/wood,
/area/crew_quarters/captain)
-"aQT" = (
+"aRJ" = (
/obj/machinery/door/window{
base_state = "left";
dir = 8;
@@ -24716,7 +25476,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aQU" = (
+"aRK" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24733,7 +25493,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aQV" = (
+"aRL" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24755,7 +25515,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aQW" = (
+"aRM" = (
/obj/machinery/keycard_auth{
pixel_x = 0;
pixel_y = -24
@@ -24774,7 +25534,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aQX" = (
+"aRN" = (
/obj/machinery/disposal,
/obj/structure/cable/green{
d1 = 1;
@@ -24789,7 +25549,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/captain)
-"aQY" = (
+"aRO" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced{
@@ -24814,14 +25574,14 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aQZ" = (
+"aRP" = (
/obj/machinery/meter{
name = "Scrubbers"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aRa" = (
+"aRQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24834,7 +25594,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aRb" = (
+"aRR" = (
/obj/machinery/keycard_auth{
pixel_x = -24;
pixel_y = 0
@@ -24861,13 +25621,13 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aRc" = (
+"aRS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aRd" = (
+"aRT" = (
/obj/structure/bed/chair/office/dark{
dir = 4
},
@@ -24888,7 +25648,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aRe" = (
+"aRU" = (
/obj/structure/table/standard,
/obj/structure/cable/green{
d1 = 1;
@@ -24902,7 +25662,7 @@
/obj/item/weapon/stamp/ce,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aRf" = (
+"aRV" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -24921,7 +25681,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aRg" = (
+"aRW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24936,7 +25696,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aRh" = (
+"aRX" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24960,7 +25720,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aRi" = (
+"aRY" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/green{
d1 = 4;
@@ -24980,7 +25740,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aRj" = (
+"aRZ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -24998,7 +25758,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRk" = (
+"aSa" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -25017,7 +25777,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRl" = (
+"aSb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25032,7 +25792,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRm" = (
+"aSc" = (
/obj/structure/closet/wardrobe/engineering_yellow,
/obj/structure/sign/nosmoking_2{
pixel_x = 32
@@ -25043,7 +25803,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRn" = (
+"aSd" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -25051,7 +25811,7 @@
/obj/effect/floor_decal/corner/yellow/full,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRo" = (
+"aSe" = (
/obj/machinery/computer/security/engineering{
name = "Drone Monitoring Cameras"
},
@@ -25061,7 +25821,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRp" = (
+"aSf" = (
/obj/structure/bed/chair/office/dark,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -25074,7 +25834,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRq" = (
+"aSg" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 10
@@ -25082,7 +25842,7 @@
/obj/machinery/computer/station_alert/engineering,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRr" = (
+"aSh" = (
/obj/machinery/conveyor_switch/oneway{
id = "Engie Delivery";
name = "Engineering Conveyor"
@@ -25093,14 +25853,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRs" = (
+"aSi" = (
/obj/machinery/conveyor{
backwards = 1;
id = "Engie Delivery"
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aRt" = (
+"aSj" = (
/obj/machinery/suit_cycler/engineering,
/obj/machinery/light/small{
dir = 8
@@ -25111,7 +25871,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aRu" = (
+"aSk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "E.V.A. Cycler Access";
@@ -25119,7 +25879,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aRv" = (
+"aSl" = (
/obj/machinery/door/firedoor{
dir = 2
},
@@ -25132,7 +25892,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aRw" = (
+"aSm" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -25154,13 +25914,13 @@
/obj/item/clothing/shoes/magboots,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aRx" = (
+"aSn" = (
/obj/item/device/radio/intercom{
pixel_x = -28
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRy" = (
+"aSo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -25175,13 +25935,13 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRz" = (
+"aSp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRA" = (
+"aSq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -25198,14 +25958,14 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRB" = (
+"aSr" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/obj/structure/closet/emcloset,
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRC" = (
+"aSs" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -25228,13 +25988,13 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/security/lobby)
-"aRD" = (
+"aSt" = (
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRE" = (
+"aSu" = (
/obj/structure/bed/chair{
dir = 4
},
@@ -25246,7 +26006,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aRF" = (
+"aSv" = (
/obj/structure/table/reinforced/steel,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/brigdoor{
@@ -25265,26 +26025,26 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aRG" = (
+"aSw" = (
/obj/structure/bed/chair{
dir = 8
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aRH" = (
+"aSx" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aRI" = (
+"aSy" = (
/obj/structure/window/reinforced/tinted/frosted,
/obj/machinery/washing_machine,
/obj/effect/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aRJ" = (
+"aSz" = (
/obj/structure/window/reinforced/tinted/frosted,
/obj/structure/table/standard,
/obj/structure/bedsheetbin,
@@ -25292,7 +26052,7 @@
/obj/effect/floor_decal/corner/red/diagonal,
/turf/simulated/floor/tiled/white,
/area/security/prison)
-"aRK" = (
+"aSA" = (
/obj/machinery/door/blast/regular{
dir = 4;
id = "Cell 5";
@@ -25302,7 +26062,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aRL" = (
+"aSB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
density = 0;
@@ -25326,7 +26086,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aRM" = (
+"aSC" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -25341,7 +26101,7 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aRN" = (
+"aSD" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -25357,58 +26117,54 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aRO" = (
+"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,
-/obj/structure/window/reinforced{
+/turf/simulated/floor/plating,
+/area/journalistoffice)
+"aSF" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 8
},
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"aRP" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 6
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aRQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"aRR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/lime{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/main)
-"aRS" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Library - North";
- network = list("Service")
- },
/turf/simulated/floor/wood,
-/area/library)
-"aRT" = (
+/area/journalistoffice)
+"aSG" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/wood,
+/area/journalistoffice)
+"aSH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aRU" = (
+/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 = 24
+ },
+/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{
@@ -25416,17 +26172,17 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aRV" = (
+"aSL" = (
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aRW" = (
+"aSM" = (
/obj/machinery/door/airlock/maintenance{
req_access = list(12)
},
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aRX" = (
+"aSN" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -25440,7 +26196,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aRY" = (
+"aSO" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -25453,7 +26209,7 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/starboard)
-"aRZ" = (
+"aSP" = (
/obj/effect/floor_decal/industrial/loading{
icon_state = "loadingarea";
dir = 1
@@ -25461,7 +26217,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aSa" = (
+"aSQ" = (
/obj/structure/window/reinforced/polarized{
dir = 4;
id = "hop"
@@ -25490,20 +26246,20 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/hop)
-"aSb" = (
+"aSR" = (
/obj/item/modular_computer/console/preset/command,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aSc" = (
+"aSS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aSd" = (
+"aST" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aSe" = (
+"aSU" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -25515,14 +26271,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aSf" = (
+"aSV" = (
/obj/machinery/status_display{
pixel_x = -32;
pixel_y = 0
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aSg" = (
+"aSW" = (
/obj/structure/table/wood,
/obj/effect/floor_decal/spline/fancy/wood{
icon_state = "spline_fancy";
@@ -25531,16 +26287,16 @@
/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aSh" = (
+"aSX" = (
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aSi" = (
+"aSY" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue,
/obj/item/weapon/pen,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aSj" = (
+"aSZ" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -25553,7 +26309,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aSk" = (
+"aTa" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
@@ -25561,7 +26317,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aSl" = (
+"aTb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
@@ -25572,7 +26328,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aSm" = (
+"aTc" = (
/obj/effect/floor_decal/corner/paleblue/full,
/obj/machinery/status_display{
density = 0;
@@ -25582,7 +26338,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aSn" = (
+"aTd" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -25599,7 +26355,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aSo" = (
+"aTe" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -25616,10 +26372,10 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/crew_quarters/captain)
-"aSp" = (
+"aTf" = (
/turf/simulated/wall/r_wall,
/area/bridge/ailobby)
-"aSq" = (
+"aTg" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -25632,7 +26388,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aSr" = (
+"aTh" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -25644,17 +26400,22 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aSs" = (
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aSt" = (
+"aTi" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/item/weapon/tank/emergency_oxygen/engi,
+/obj/item/device/gps/engineering,
+/obj/item/weapon/pipewrench,
+/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/chief)
+"aTj" = (
/obj/item/modular_computer/console/preset/engineering,
/obj/machinery/light_switch{
pixel_y = -28
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aSu" = (
+"aTk" = (
/obj/item/modular_computer/console/preset/engineering,
/obj/machinery/newscaster{
layer = 3.3;
@@ -25663,7 +26424,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aSv" = (
+"aTl" = (
/obj/structure/table/standard,
/obj/item/clothing/glasses/welding/superior{
pixel_x = 2;
@@ -25675,7 +26436,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aSw" = (
+"aTm" = (
/obj/machinery/light,
/obj/structure/cable/green{
d1 = 1;
@@ -25684,7 +26445,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/chief)
-"aSx" = (
+"aTn" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -25696,7 +26457,7 @@
/obj/structure/table/standard,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/chief)
-"aSy" = (
+"aTo" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -25718,12 +26479,12 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aSz" = (
+"aTp" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/floor_decal/corner/yellow/full,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSA" = (
+"aTq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -25740,7 +26501,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSB" = (
+"aTr" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/yellow{
@@ -25760,7 +26521,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSC" = (
+"aTs" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -25773,7 +26534,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSD" = (
+"aTt" = (
/obj/structure/closet/crate,
/obj/effect/floor_decal/corner/yellow/full{
icon_state = "corner_white_full";
@@ -25787,7 +26548,7 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSE" = (
+"aTu" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -25805,7 +26566,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aSF" = (
+"aTv" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -25828,7 +26589,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aSG" = (
+"aTw" = (
/obj/structure/table/reinforced/steel,
/obj/machinery/door/window/brigdoor/northleft{
name = "Engineering Desk";
@@ -25852,7 +26613,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aSH" = (
+"aTx" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced,
@@ -25874,7 +26635,25 @@
},
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aSI" = (
+"aTy" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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"
@@ -25887,22 +26666,30 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aSJ" = (
+"aTA" = (
/obj/machinery/suit_cycler/mining,
/obj/effect/floor_decal/corner/blue/full,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSK" = (
+"aTB" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSM" = (
+"aTC" = (
+/obj/structure/reagent_dispensers/extinguisher,
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/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/blue/full,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSN" = (
+"aTE" = (
/obj/structure/dispenser/oxygen,
/obj/machinery/camera/network/security{
c_tag = "EVA - Aft Camera";
@@ -25914,11 +26701,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSO" = (
+"aTF" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSP" = (
+"aTG" = (
/obj/machinery/door/firedoor{
dir = 2
},
@@ -25932,7 +26719,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aSQ" = (
+"aTH" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -25945,7 +26732,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/ai_monitored/storage/eva)
-"aSR" = (
+"aTI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -25958,7 +26745,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aSS" = (
+"aTJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25969,16 +26756,19 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aST" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
+"aTK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aSU" = (
+/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{
@@ -25986,7 +26776,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering)
-"aSV" = (
+"aTM" = (
/obj/machinery/door/airlock/maintenance{
name = "Maintenance Access";
req_access = list(12)
@@ -25997,13 +26787,13 @@
},
/turf/simulated/floor/plating,
/area/security/lobby)
-"aSW" = (
+"aTN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aSX" = (
+"aTO" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 9
@@ -26014,7 +26804,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aSY" = (
+"aTP" = (
/obj/machinery/light,
/obj/machinery/camera/network/security{
c_tag = "Security - Lobby";
@@ -26035,7 +26825,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aSZ" = (
+"aTQ" = (
/obj/effect/floor_decal/corner/blue{
icon_state = "corner_white";
dir = 6
@@ -26052,7 +26842,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aTa" = (
+"aTR" = (
/obj/machinery/alarm{
dir = 1;
pixel_y = -25
@@ -26064,7 +26854,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aTb" = (
+"aTS" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -26077,7 +26867,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aTc" = (
+"aTT" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -26085,11 +26875,21 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aTd" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"aTe" = (
+"aTU" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(1)
+ },
+/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
},
@@ -26104,7 +26904,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aTf" = (
+"aTW" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced,
@@ -26131,7 +26931,7 @@
},
/turf/simulated/floor/plating,
/area/security/prison)
-"aTg" = (
+"aTX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
@@ -26144,7 +26944,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTh" = (
+"aTY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
},
@@ -26153,7 +26953,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTi" = (
+"aTZ" = (
/obj/machinery/door/airlock{
name = "Visitation Area"
},
@@ -26174,7 +26974,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTj" = (
+"aUa" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26183,7 +26983,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTk" = (
+"aUb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26195,7 +26995,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTl" = (
+"aUc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -26207,7 +27007,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTm" = (
+"aUd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 9
@@ -26218,16 +27018,25 @@
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTn" = (
+"aUe" = (
/obj/machinery/portable_atmospherics/hydroponics,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTo" = (
+"aUf" = (
/obj/machinery/portable_atmospherics/hydroponics,
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTq" = (
+"aUg" = (
+/obj/item/weapon/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;
@@ -26259,7 +27068,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTr" = (
+"aUi" = (
/obj/structure/table/standard,
/obj/item/weapon/material/minihoe,
/obj/item/device/analyzer/plant_analyzer,
@@ -26271,7 +27080,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTs" = (
+"aUj" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 5";
name = "Cell 5 Locker"
@@ -26282,7 +27091,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTt" = (
+"aUk" = (
/obj/structure/bed,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -26293,7 +27102,7 @@
},
/turf/simulated/floor/tiled,
/area/security/prison)
-"aTu" = (
+"aUl" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -26301,59 +27110,60 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aTv" = (
+"aUm" = (
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/security/brig)
-"aTw" = (
-/obj/item/weapon/wrench,
-/obj/item/weapon/screwdriver,
-/obj/item/weapon/crowbar,
-/obj/structure/table/reinforced/steel,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aTx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/main)
-"aTz" = (
-/obj/structure/table/standard,
+"aUn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder,
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aUo" = (
+/obj/structure/table/wood,
+/obj/item/weapon/clipboard,
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aUp" = (
+/obj/structure/table/wood,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/item/weapon/pen/blue,
+/obj/item/weapon/pen/red,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/obj/machinery/requests_console{
- department = "Telescience Lab";
- departmentType = 2;
- name = "Requests Console";
- pixel_x = -32;
- pixel_y = 0
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
+/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
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aTA" = (
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aTB" = (
+/obj/item/device/taperecorder,
+/obj/item/weapon/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
},
@@ -26365,14 +27175,14 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aTC" = (
+"aUt" = (
/obj/random/junk,
/obj/structure/closet/hydrant{
pixel_x = 32
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aTD" = (
+"aUu" = (
/obj/item/device/radio/intercom{
pixel_x = -27
},
@@ -26384,7 +27194,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aTE" = (
+"aUv" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -26394,11 +27204,11 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/starboard)
-"aTF" = (
+"aUw" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aTG" = (
+"aUx" = (
/obj/structure/window/reinforced/polarized{
dir = 4;
id = "hop"
@@ -26428,25 +27238,25 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/hop)
-"aTH" = (
+"aUy" = (
/obj/machinery/computer/secure_data,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aTI" = (
+"aUz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aTJ" = (
+"aUA" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
/obj/structure/closet/secure_closet/hop2,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aTK" = (
+"aUB" = (
/obj/structure/bed/chair/office/bridge{
icon_state = "bridge";
dir = 4
@@ -26462,7 +27272,7 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aTL" = (
+"aUC" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/effect/floor_decal/spline/fancy/wood{
@@ -26471,20 +27281,20 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aTM" = (
+"aUD" = (
/obj/effect/floor_decal/corner/brown{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aTN" = (
+"aUE" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aTO" = (
+"aUF" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -26500,7 +27310,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aTP" = (
+"aUG" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -26520,7 +27330,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aTQ" = (
+"aUH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26535,7 +27345,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aTR" = (
+"aUI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26550,7 +27360,7 @@
/obj/effect/floor_decal/corner/paleblue/full,
/turf/simulated/floor/tiled,
/area/bridge)
-"aTS" = (
+"aUJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26570,7 +27380,7 @@
dir = 4
},
/area/bridge)
-"aTT" = (
+"aUK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26589,7 +27399,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aTU" = (
+"aUL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26608,7 +27418,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aTV" = (
+"aUM" = (
/obj/machinery/door/airlock/glass_command{
name = "B Lift Access";
req_access = list(19)
@@ -26628,7 +27438,7 @@
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aTW" = (
+"aUN" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -26642,7 +27452,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aTX" = (
+"aUO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
@@ -26654,7 +27464,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aTY" = (
+"aUP" = (
/obj/machinery/alarm{
pixel_y = 23
},
@@ -26663,7 +27473,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aTZ" = (
+"aUQ" = (
/obj/machinery/light{
dir = 1
},
@@ -26675,7 +27485,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUa" = (
+"aUR" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -26685,10 +27495,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUb" = (
+"aUS" = (
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUc" = (
+"aUT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Cyborg Station";
@@ -26696,7 +27506,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUd" = (
+"aUU" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -26705,12 +27515,12 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUe" = (
+"aUV" = (
/obj/machinery/recharge_station,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aUf" = (
+"aUW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -26721,10 +27531,10 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aUg" = (
+"aUX" = (
/turf/simulated/wall/r_wall,
/area/janitor)
-"aUh" = (
+"aUY" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -26742,7 +27552,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aUi" = (
+"aUZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -26763,7 +27573,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aUj" = (
+"aVa" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -26782,7 +27592,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aUk" = (
+"aVb" = (
/obj/structure/cable/green{
d2 = 8;
icon_state = "0-8"
@@ -26800,11 +27610,11 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/chief)
-"aUl" = (
+"aVc" = (
/obj/structure/sign/securearea,
/turf/simulated/wall/r_wall,
/area/engineering/foyer)
-"aUm" = (
+"aVd" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -26825,7 +27635,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aUn" = (
+"aVe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Hallway";
@@ -26841,7 +27651,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aUo" = (
+"aVf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering Hallway";
@@ -26850,7 +27660,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aUp" = (
+"aVg" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -26867,32 +27677,32 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aUq" = (
+"aVh" = (
/obj/structure/sign/securearea,
/turf/simulated/wall,
/area/engineering/foyer)
-"aUr" = (
+"aVi" = (
/obj/effect/floor_decal/corner/yellow/full{
icon_state = "corner_white_full";
dir = 8
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aUs" = (
+"aVj" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 5
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aUt" = (
+"aVk" = (
/obj/effect/floor_decal/corner/yellow/full{
icon_state = "corner_white_full";
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aUu" = (
+"aVl" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -26910,7 +27720,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aUv" = (
+"aVm" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -26933,14 +27743,27 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aUw" = (
-/obj/structure/cryofeed{
- icon_state = "cryo_rear";
- dir = 2
+"aVn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "E.V.A.";
+ req_one_access = list(18)
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"aUx" = (
+/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"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ai_monitored/storage/eva)
+"aVo" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -26963,7 +27786,7 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aUy" = (
+"aVp" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 1
@@ -26981,10 +27804,10 @@
},
/turf/simulated/floor/plating,
/area/ai_monitored/storage/eva)
-"aUz" = (
+"aVq" = (
/turf/simulated/wall,
/area/hallway/primary/port)
-"aUA" = (
+"aVr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "Maintenance Access";
@@ -26998,10 +27821,10 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/port)
-"aUB" = (
+"aVs" = (
/turf/simulated/wall,
/area/hallway/primary/central_one)
-"aUC" = (
+"aVt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!";
@@ -27009,7 +27832,7 @@
},
/turf/simulated/floor/tiled,
/area/security/lobby)
-"aUD" = (
+"aVu" = (
/obj/structure/grille,
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
@@ -27025,7 +27848,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/security/lobby)
-"aUE" = (
+"aVv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/regular{
density = 0;
@@ -27043,65 +27866,87 @@
},
/turf/simulated/floor/tiled,
/area/security/brig)
-"aUF" = (
+"aVw" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aUG" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
+"aVx" = (
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "journalist"
+ },
+/obj/structure/window/reinforced/polarized{
dir = 4;
- status = 0
+ id = "journalist"
},
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aUH" = (
-/obj/structure/bookcase{
- name = "Forbidden Knowledge"
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ id = "journalist"
},
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"aUI" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"aUJ" = (
+/turf/simulated/floor/plating,
+/area/journalistoffice)
+"aVy" = (
/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/library)
-"aUK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/obj/machinery/requests_console{
- department = "Library";
- departmentType = 1;
- name = "Library Requests Console";
- pixel_x = 0;
- pixel_y = 32
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aVz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aVA" = (
+/obj/structure/bed/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/library)
-"aUL" = (
+/area/journalistoffice)
+"aVD" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/wood,
+/area/journalistoffice)
+"aVE" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -27110,7 +27955,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aUM" = (
+"aVF" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
@@ -27121,26 +27966,26 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/hallway/primary/starboard)
-"aUN" = (
+"aVG" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/skills,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aUO" = (
+"aVH" = (
/obj/machinery/hologram/holopad,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aUP" = (
+"aVI" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aUQ" = (
+"aVJ" = (
/obj/structure/closet/secure_closet/hop,
/obj/item/weapon/book/manual/security_space_law,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aUR" = (
+"aVK" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -27149,7 +27994,7 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aUS" = (
+"aVL" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -27162,7 +28007,7 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aUT" = (
+"aVM" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue,
/obj/item/weapon/folder/blue,
@@ -27173,11 +28018,11 @@
/obj/item/weapon/pen,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aUU" = (
+"aVN" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aUV" = (
+"aVO" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/blue,
/obj/item/weapon/folder/blue,
@@ -27189,7 +28034,7 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aUW" = (
+"aVP" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 8
@@ -27199,7 +28044,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aUX" = (
+"aVQ" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -27208,7 +28053,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/tiled,
/area/bridge)
-"aUY" = (
+"aVR" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/effect/floor_decal/industrial/warning{
icon_state = "warning";
@@ -27216,7 +28061,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aUZ" = (
+"aVS" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/door/airlock/glass_command{
@@ -27225,7 +28070,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVa" = (
+"aVT" = (
/obj/structure/cable/green,
/obj/machinery/power/apc{
dir = 2;
@@ -27234,15 +28079,15 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVb" = (
+"aVU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVc" = (
+"aVV" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVd" = (
+"aVW" = (
/obj/structure/bed/chair{
dir = 8
},
@@ -27254,7 +28099,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVe" = (
+"aVX" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -27265,7 +28110,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aVf" = (
+"aVY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27277,7 +28122,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aVg" = (
+"aVZ" = (
/obj/structure/sign/double/map/left{
pixel_y = 32
},
@@ -27297,14 +28142,14 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aVh" = (
+"aWa" = (
/obj/item/weapon/stool,
/obj/structure/sign/double/map/right{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aVi" = (
+"aWb" = (
/obj/structure/table/steel,
/obj/item/weapon/deck/cards,
/obj/item/weapon/key/janicart,
@@ -27314,7 +28159,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aVj" = (
+"aWc" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
@@ -27324,11 +28169,11 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aVk" = (
+"aWd" = (
/obj/vehicle/train/cargo/engine/pussywagon,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aVl" = (
+"aWe" = (
/obj/machinery/button/remote/blast_door{
id = "mopinator";
name = "Custodial Garage";
@@ -27337,7 +28182,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aVm" = (
+"aWf" = (
/obj/machinery/door/blast/shutters{
density = 1;
dir = 4;
@@ -27348,30 +28193,30 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aVn" = (
+"aWg" = (
/obj/effect/floor_decal/industrial/loading{
icon_state = "loadingarea";
dir = 4
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVo" = (
+"aWh" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVp" = (
+"aWi" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVq" = (
+"aWj" = (
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVr" = (
+"aWk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -27386,7 +28231,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVs" = (
+"aWl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27401,7 +28246,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVt" = (
+"aWm" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
@@ -27409,31 +28254,29 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVu" = (
+"aWn" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aVv" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- tag = "icon-warning_dust (SOUTHWEST)";
- icon_state = "warning_dust";
- dir = 10
+"aWo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway";
+ req_one_access = null
},
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aVw" = (
+/turf/simulated/floor/tiled,
+/area/engineering/foyer)
+"aWp" = (
/obj/effect/floor_decal/corner/yellow{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVx" = (
+"aWq" = (
/obj/structure/sign/directions/engineering{
dir = 8;
icon_state = "direction_eng";
@@ -27454,16 +28297,16 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVy" = (
+"aWr" = (
/obj/item/device/radio/intercom{
pixel_y = 27
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVz" = (
+"aWs" = (
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVA" = (
+"aWt" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable{
@@ -27474,32 +28317,30 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVB" = (
+"aWu" = (
/obj/machinery/light{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVC" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
+"aWv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"aVD" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"aWw" = (
/obj/machinery/alarm{
pixel_y = 23
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVE" = (
+"aWx" = (
/obj/machinery/firealarm/north,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVF" = (
+"aWy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27508,27 +28349,23 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aVG" = (
+"aWz" = (
+/obj/machinery/door/firedoor{
+ enable_smart_generation = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"aWA" = (
+/obj/machinery/door/airlock/glass,
+/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)
-"aVH" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
-"aVI" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aVJ" = (
+"aWC" = (
/obj/structure/sign/directions/engineering{
dir = 8;
icon_state = "direction_eng";
@@ -27543,7 +28380,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVK" = (
+"aWD" = (
/obj/structure/sign/directions/cryo{
pixel_y = 28
},
@@ -27555,7 +28392,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVL" = (
+"aWE" = (
/obj/structure/sign/directions/security{
dir = 4;
icon_state = "direction_sec";
@@ -27574,19 +28411,19 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVM" = (
+"aWF" = (
/obj/structure/sign/double/map/left{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVN" = (
+"aWG" = (
/obj/structure/sign/double/map/right{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVO" = (
+"aWH" = (
/obj/machinery/newscaster{
pixel_y = 32
},
@@ -27595,13 +28432,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVP" = (
+"aWI" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVQ" = (
+"aWJ" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
@@ -27625,30 +28462,25 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVR" = (
+"aWK" = (
/obj/effect/floor_decal/corner/blue{
dir = 1
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sink/kitchen{
- dir = 4;
- icon_state = "sink_alt";
- name = "hydroponics sink";
- pixel_x = -20
+"aWL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
},
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aVT" = (
+/area/hallway/primary/central_one)
+"aWM" = (
/obj/machinery/station_map{
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVU" = (
+"aWN" = (
/obj/structure/sign/directions/engineering{
dir = 8;
icon_state = "direction_eng";
@@ -27668,7 +28500,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVV" = (
+"aWO" = (
/obj/structure/sign/directions/evac{
dir = 8;
icon_state = "direction_evac";
@@ -27685,7 +28517,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVW" = (
+"aWP" = (
/obj/structure/sign/directions/civ{
pixel_y = 24
},
@@ -27702,40 +28534,55 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aVX" = (
+"aWQ" = (
/obj/machinery/door/airlock/glass,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aVY" = (
+"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{
pixel_y = 27
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aVZ" = (
+"aWT" = (
/obj/machinery/status_display{
pixel_x = 0;
pixel_y = 32
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWa" = (
+"aWU" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/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)
-"aWb" = (
+"aWW" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWc" = (
+"aWX" = (
/obj/machinery/camera/network/civilian_main{
c_tag = "Starboard Corridor - Camera 2"
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWd" = (
+"aWY" = (
/obj/effect/floor_decal/corner/blue{
dir = 4
},
@@ -27744,103 +28591,91 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWe" = (
+"aWZ" = (
/obj/effect/floor_decal/corner/blue{
dir = 5
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWf" = (
-/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
+"aXa" = (
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 1
},
/obj/machinery/door/firedoor{
enable_smart_generation = 0
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
-"aWg" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
+/area/hallway/primary/starboard)
+"aXb" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Eng";
+ location = "S4"
},
/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aXc" = (
+/obj/machinery/requests_console{
+ department = "Journalist's Office";
+ dir = 8;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
},
-/turf/simulated/floor/plating,
-/area/engineering/foyer)
-"aWh" = (
/turf/simulated/floor/carpet,
-/area/library)
-"aWi" = (
-/obj/structure/track{
- icon_state = "track13"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aWj" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/library)
-"aWk" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/library)
-"aWl" = (
-/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)
-"aWm" = (
-/obj/structure/cryofeed{
- icon_state = "cryo_rear";
+/area/journalistoffice)
+"aXd" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 2
},
-/obj/machinery/light{
+/obj/structure/noticeboard{
+ desc = "A board for uncovering hidden conspiracies.";
+ name = "corkboard";
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aXe" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/carpet,
+/area/journalistoffice)
+"aXf" = (
+/obj/machinery/button/windowtint{
+ dir = 2;
+ id = "journalist";
+ pixel_x = 0;
+ 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
},
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"aWn" = (
-/obj/structure/sign/drop,
-/turf/simulated/wall,
-/area/outpost/mining_main/eva)
-"aWo" = (
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"aWp" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -27
+ },
+/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
},
@@ -27850,7 +28685,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aWq" = (
+"aXj" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -27860,7 +28695,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aWr" = (
+"aXk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -27874,7 +28709,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aWs" = (
+"aXl" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -27883,7 +28718,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWt" = (
+"aXm" = (
/obj/structure/sign/nosmoking_1{
pixel_y = -32
},
@@ -27899,7 +28734,7 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWu" = (
+"aXn" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -27913,7 +28748,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aWv" = (
+"aXo" = (
/obj/structure/window/reinforced/polarized{
dir = 4;
id = "hop"
@@ -27946,7 +28781,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/hop)
-"aWw" = (
+"aXp" = (
/obj/structure/table/reinforced,
/obj/item/device/eftpos{
eftpos_name = "HoP EFTPOS scanner"
@@ -27955,14 +28790,14 @@
/obj/item/device/megaphone,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aWx" = (
+"aXq" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aWy" = (
+"aXr" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Head of Personnel Desk";
dir = 8
@@ -27974,11 +28809,11 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aWz" = (
+"aXs" = (
/obj/effect/floor_decal/spline/fancy/wood,
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aWA" = (
+"aXt" = (
/obj/effect/floor_decal/spline/fancy/wood{
icon_state = "spline_fancy";
dir = 4
@@ -27991,14 +28826,14 @@
},
/turf/simulated/floor/carpet,
/area/bridge/meeting_room)
-"aWB" = (
+"aXu" = (
/obj/effect/floor_decal/corner/grey{
icon_state = "corner_white";
dir = 6
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aWC" = (
+"aXv" = (
/obj/structure/bed/chair/office/bridge{
icon_state = "bridge";
dir = 8
@@ -28006,7 +28841,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aWD" = (
+"aXw" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/effect/floor_decal/corner/orange{
icon_state = "corner_white";
@@ -28014,7 +28849,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/meeting_room)
-"aWE" = (
+"aXx" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -28034,7 +28869,7 @@
},
/turf/simulated/floor/plating,
/area/bridge/meeting_room)
-"aWF" = (
+"aXy" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
@@ -28045,7 +28880,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aWG" = (
+"aXz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
@@ -28058,7 +28893,7 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aWH" = (
+"aXA" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -28070,16 +28905,19 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aWI" = (
+"aXB" = (
/turf/simulated/wall,
/area/crew_quarters/heads/cryo)
-"aWJ" = (
+"aXC" = (
+/turf/simulated/wall,
+/area/bridge/ailobby)
+"aXD" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aWK" = (
+"aXE" = (
/obj/structure/table/reinforced,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -28095,18 +28933,18 @@
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aWL" = (
+"aXF" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aWM" = (
+"aXG" = (
/obj/machinery/cryopod/robot,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled/dark,
/area/bridge/ailobby)
-"aWN" = (
+"aXH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28126,7 +28964,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aWO" = (
+"aXI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28142,7 +28980,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aWP" = (
+"aXJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28161,7 +28999,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aWQ" = (
+"aXK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28177,7 +29015,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aWR" = (
+"aXL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28195,7 +29033,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aWS" = (
+"aXM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28212,7 +29050,7 @@
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aWT" = (
+"aXN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28228,7 +29066,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aWU" = (
+"aXO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28241,7 +29079,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aWV" = (
+"aXP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28262,7 +29100,7 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"aWW" = (
+"aXQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28278,7 +29116,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aWX" = (
+"aXR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28290,7 +29128,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aWY" = (
+"aXS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -28300,7 +29138,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aWZ" = (
+"aXT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -28317,7 +29155,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXa" = (
+"aXU" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -28330,7 +29168,7 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXb" = (
+"aXV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28349,7 +29187,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXc" = (
+"aXW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28364,7 +29202,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXd" = (
+"aXX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28380,7 +29218,7 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXe" = (
+"aXY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28393,7 +29231,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXf" = (
+"aXZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28417,7 +29255,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aXg" = (
+"aYa" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
icon_state = "rwindow";
@@ -28444,7 +29282,7 @@
},
/turf/simulated/floor/plating,
/area/engineering/foyer)
-"aXh" = (
+"aYb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28472,7 +29310,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXi" = (
+"aYc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28487,7 +29325,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXj" = (
+"aYd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28503,7 +29341,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXk" = (
+"aYe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28523,7 +29361,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXl" = (
+"aYf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28536,7 +29374,7 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXm" = (
+"aYg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28551,7 +29389,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXn" = (
+"aYh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28571,7 +29409,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXo" = (
+"aYi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28587,8 +29425,8 @@
enable_smart_generation = 0
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aXp" = (
+/area/hallway/primary/port)
+"aYj" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -28603,7 +29441,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aXq" = (
+"aYk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28619,8 +29457,8 @@
enable_smart_generation = 0
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"aXr" = (
+/area/hallway/primary/central_one)
+"aYl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28635,21 +29473,27 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aXs" = (
-/obj/structure/bed/chair/office/dark{
+"aYm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
-/obj/effect/landmark/start{
- name = "Gardener"
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
},
-/obj/structure/cable/green{
+/obj/structure/cable{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aXt" = (
+/area/hallway/primary/central_one)
+"aYn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28663,7 +29507,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aXu" = (
+"aYo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28682,7 +29526,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aXv" = (
+"aYp" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable{
d1 = 4;
@@ -28697,26 +29541,24 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aXw" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Eng";
- location = "S4"
+"aYq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ 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)
-"aXx" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"aXy" = (
+"aYr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28730,7 +29572,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aXz" = (
+"aYs" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28749,7 +29591,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aXA" = (
+"aYt" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -28770,7 +29612,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aXB" = (
+"aYu" = (
/obj/structure/sign/directions/evac{
dir = 8;
icon_state = "direction_evac";
@@ -28789,27 +29631,26 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aXC" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
+"aYv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(70)
},
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"aXD" = (
+/turf/simulated/floor/plating,
+/area/journalistoffice)
+"aYw" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aXE" = (
+"aYx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aXF" = (
+"aYy" = (
/turf/simulated/wall,
/area/maintenance/substation/command)
-"aXG" = (
+"aYz" = (
/obj/machinery/door/airlock/engineering{
name = "Command Substation";
req_one_access = list(11,24)
@@ -28822,10 +29663,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"aXH" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/substation/command)
-"aXI" = (
+"aYA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
id_tag = "hopdoor";
@@ -28847,14 +29685,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aXJ" = (
+"aYB" = (
/obj/machinery/vending/cart,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aXK" = (
+"aYC" = (
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aXL" = (
+"aYD" = (
/obj/machinery/recharger,
/obj/structure/table/reinforced,
/obj/machinery/ringer{
@@ -28866,14 +29704,14 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aXM" = (
+"aYE" = (
/turf/simulated/floor/tiled/ramp/bottom,
/area/bridge/meeting_room)
-"aXN" = (
+"aYF" = (
/obj/machinery/vending/coffee,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXO" = (
+"aYG" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
@@ -28884,7 +29722,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXP" = (
+"aYH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -28895,7 +29733,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXQ" = (
+"aYI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -28909,7 +29747,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXR" = (
+"aYJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -28927,7 +29765,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXS" = (
+"aYK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
id_tag = null;
@@ -28950,7 +29788,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aXT" = (
+"aYL" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 6
@@ -28972,7 +29810,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aXU" = (
+"aYM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
@@ -28993,7 +29831,7 @@
},
/turf/simulated/floor/tiled/white,
/area/bridge)
-"aXV" = (
+"aYN" = (
/obj/machinery/alarm{
dir = 8;
pixel_x = 25;
@@ -29005,21 +29843,21 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"aXW" = (
+"aYO" = (
/obj/structure/cryofeed{
icon_state = "cryo_rear";
dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/cryo)
-"aXX" = (
+"aYP" = (
/obj/machinery/cryopod{
icon_state = "body_scanner_0";
dir = 4
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/cryo)
-"aXY" = (
+"aYQ" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -29035,22 +29873,19 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"aXZ" = (
+"aYR" = (
/obj/structure/bed/padded,
/obj/item/weapon/bedsheet/blue,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"aYa" = (
-/turf/simulated/wall,
-/area/bridge/ailobby)
-"aYb" = (
+"aYS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
req_access = list(19)
},
/turf/simulated/floor/plating,
/area/bridge/ailobby)
-"aYc" = (
+"aYT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29060,7 +29895,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aYd" = (
+"aYU" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable/green{
d1 = 1;
@@ -29072,7 +29907,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aYe" = (
+"aYV" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29080,7 +29915,7 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aYf" = (
+"aYW" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29090,19 +29925,19 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/janitor)
-"aYg" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
+"aYX" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access = list(26)
},
-/turf/simulated/floor/plating,
-/area/library)
-"aYh" = (
+/turf/simulated/floor/tiled,
+/area/janitor)
+"aYY" = (
/obj/machinery/button/remote/blast_door{
id = "mopinator";
name = "Custodial Garage";
@@ -29116,7 +29951,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYi" = (
+"aYZ" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29128,7 +29963,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYj" = (
+"aZa" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = -32
@@ -29140,7 +29975,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYk" = (
+"aZb" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 4;
@@ -29153,7 +29988,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYl" = (
+"aZc" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=CP1";
location = "Eng"
@@ -29168,7 +30003,7 @@
/mob/living/bot/secbot/beepsky,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYm" = (
+"aZd" = (
/obj/machinery/light,
/obj/machinery/status_display{
pixel_x = 0;
@@ -29176,14 +30011,14 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYn" = (
+"aZe" = (
/obj/machinery/station_map{
dir = 1;
pixel_y = -32
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aYo" = (
+"aZf" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -29195,19 +30030,15 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYp" = (
-/obj/structure/ladder/up{
- pixel_y = 16
+"aZg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"aYq" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/port)
+"aZh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29223,15 +30054,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYr" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
-"aYs" = (
+"aZi" = (
/obj/machinery/ai_status_display{
pixel_x = 0;
pixel_y = -32
@@ -29243,7 +30066,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYt" = (
+"aZj" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -29254,7 +30077,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYu" = (
+"aZk" = (
/obj/machinery/camera/network/civilian_main{
c_tag = "Port Corridor - Camera 1";
dir = 1
@@ -29267,7 +30090,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYv" = (
+"aZl" = (
/obj/machinery/door/firedoor{
enable_smart_generation = 0
},
@@ -29278,7 +30101,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYw" = (
+"aZm" = (
/obj/machinery/door/airlock/glass,
/obj/structure/cable/green{
d1 = 4;
@@ -29287,10 +30110,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/port)
-"aYx" = (
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYy" = (
+"aZn" = (
/obj/machinery/door/firedoor{
enable_smart_generation = 0
},
@@ -29301,51 +30121,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYz" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYA" = (
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYB" = (
-/obj/item/device/radio/intercom{
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Security Entrance";
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYC" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYD" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYE" = (
+"aZo" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29353,7 +30129,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYF" = (
+"aZp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29373,7 +30149,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYG" = (
+"aZq" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 8;
@@ -29381,7 +30157,54 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYH" = (
+"aZr" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor - Security Entrance";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"aZv" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"aZw" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/status_display{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"aZx" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -29389,17 +30212,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYI" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYJ" = (
+"aZy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29423,7 +30236,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYK" = (
+"aZz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29434,17 +30247,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYL" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/standard,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aYM" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aYN" = (
+"aZA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29458,7 +30261,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aYO" = (
+"aZB" = (
/obj/machinery/door/airlock/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29470,7 +30273,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYP" = (
+"aZC" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29484,7 +30287,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYQ" = (
+"aZD" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29496,7 +30299,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYR" = (
+"aZE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29508,28 +30311,99 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYS" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
+"aZF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled,
-/area/hydroponics)
-"aYT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/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{
+ pixel_y = -32
+ },
+/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{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"aZK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/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)
-"aYU" = (
+/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;
@@ -29549,7 +30423,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYV" = (
+"aZN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29564,7 +30438,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"aYW" = (
+"aZO" = (
/obj/machinery/door/airlock/maintenance{
req_access = null;
req_one_access = list(12,66)
@@ -29580,7 +30454,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aYX" = (
+"aZP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29592,7 +30466,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aYY" = (
+"aZQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29603,7 +30477,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aYZ" = (
+"aZR" = (
/obj/effect/decal/cleanable/generic,
/obj/structure/cable{
d1 = 4;
@@ -29615,7 +30489,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aZa" = (
+"aZS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29629,7 +30503,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aZb" = (
+"aZT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29641,7 +30515,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aZc" = (
+"aZU" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 2;
@@ -29656,7 +30530,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"aZd" = (
+"aZV" = (
/obj/machinery/power/apc{
dir = 8;
name = "west bump";
@@ -29669,7 +30543,7 @@
/obj/structure/cable/green,
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"aZe" = (
+"aZW" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -29687,7 +30561,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"aZf" = (
+"aZX" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -29695,7 +30569,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aZg" = (
+"aZY" = (
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
dir = 4;
@@ -29705,13 +30579,13 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aZh" = (
+"aZZ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aZi" = (
+"baa" = (
/obj/machinery/photocopier,
/obj/machinery/status_display{
density = 0;
@@ -29721,7 +30595,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"aZj" = (
+"bab" = (
/obj/machinery/power/apc{
dir = 2;
name = "south bump";
@@ -29733,7 +30607,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZk" = (
+"bac" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -29741,7 +30615,7 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZl" = (
+"bad" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Bridge";
@@ -29756,11 +30630,11 @@
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZm" = (
+"bae" = (
/obj/machinery/lapvend,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZn" = (
+"baf" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -3;
@@ -29770,14 +30644,14 @@
/obj/machinery/light,
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZo" = (
+"bag" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/simulated/floor/wood,
/area/bridge/meeting_room)
-"aZp" = (
+"bah" = (
/obj/structure/window/reinforced,
/obj/structure/cryofeed{
icon_state = "cryo_rear";
@@ -29785,7 +30659,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/cryo)
-"aZq" = (
+"bai" = (
/obj/structure/window/reinforced,
/obj/machinery/cryopod{
icon_state = "body_scanner_0";
@@ -29793,7 +30667,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/cryo)
-"aZr" = (
+"baj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -29804,7 +30678,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"aZs" = (
+"bak" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -29813,13 +30687,13 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"aZt" = (
+"bal" = (
/turf/simulated/open,
/area/turbolift/ai_station)
-"aZu" = (
+"bam" = (
/turf/simulated/wall/r_wall,
/area/maintenance/maintcentral)
-"aZv" = (
+"ban" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29830,7 +30704,7 @@
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"aZw" = (
+"bao" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -29840,23 +30714,19 @@
},
/turf/simulated/floor/tiled,
/area/janitor)
-"aZx" = (
-/obj/structure/cryofeed{
- icon_state = "cryo_rear";
- dir = 2
+"bap" = (
+/obj/machinery/camera/network/service{
+ c_tag = "Janitor - Garage";
+ dir = 1
},
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"aZy" = (
+/turf/simulated/floor/tiled,
+/area/janitor)
+"baq" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled,
/area/janitor)
-"aZz" = (
+"bar" = (
/obj/structure/closet/crate/trashcart,
/obj/machinery/requests_console{
department = "Janitorial";
@@ -29866,12 +30736,12 @@
/obj/item/weapon/storage/bag/trash,
/turf/simulated/floor/tiled,
/area/janitor)
-"aZA" = (
+"bas" = (
/obj/machinery/vending/coffee,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/janitor)
-"aZB" = (
+"bat" = (
/obj/machinery/vending/cigarette,
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/light{
@@ -29881,10 +30751,10 @@
/obj/machinery/firealarm/east,
/turf/simulated/floor/tiled,
/area/janitor)
-"aZC" = (
+"bau" = (
/turf/simulated/wall,
/area/janitor)
-"aZD" = (
+"bav" = (
/obj/machinery/newscaster{
layer = 3.3;
pixel_x = 0;
@@ -29892,12 +30762,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZE" = (
+"baw" = (
/obj/effect/floor_decal/corner/yellow,
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZF" = (
+"bax" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/effect/floor_decal/corner/yellow{
@@ -29911,7 +30781,7 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZG" = (
+"bay" = (
/obj/item/device/radio/intercom{
pixel_y = -32
},
@@ -29921,17 +30791,17 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZH" = (
+"baz" = (
/obj/machinery/vending/zora,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZI" = (
+"baA" = (
/obj/structure/bed/chair{
dir = 1
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZJ" = (
+"baB" = (
/obj/machinery/atm{
pixel_y = -32
},
@@ -29940,12 +30810,12 @@
},
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZK" = (
+"baC" = (
/obj/machinery/vending/cigarette,
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/engineering/foyer)
-"aZL" = (
+"baD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29961,21 +30831,67 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/port)
-"aZM" = (
+"baE" = (
/turf/simulated/wall/r_wall,
/area/assembly/robotics)
-"aZO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"baF" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
},
-/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)
-"aZP" = (
+/area/hallway/primary/central_one)
+"baG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/paleblue{
+ icon_state = "corner_white";
+ 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/paleblue{
+ icon_state = "corner_white";
+ 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;
@@ -29990,143 +30906,29 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"aZQ" = (
+"baL" = (
/turf/simulated/wall/r_wall,
-/area/hallway/primary/central_one)
-"aZS" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aZT" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"aZU" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/item/weapon/storage/fancy/vials{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"aZV" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"aZW" = (
+"baM" = (
/turf/simulated/wall,
-/area/medical/surgeryprep)
-"aZX" = (
-/obj/machinery/button/remote/blast_door{
- id = "telescience";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access = list(55)
+/area/medical/medbay)
+"baN" = (
+/turf/simulated/wall,
+/area/medical/icu)
+"baO" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
},
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/effect/floor_decal/corner/mauve/diagonal{
- icon_state = "corner_white_diagonal";
- dir = 8
- },
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aZY" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/effect/floor_decal/corner/mauve/diagonal{
- icon_state = "corner_white_diagonal";
- dir = 8
- },
-/obj/machinery/computer/telescience{
- starting_crystals = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"aZZ" = (
-/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/mauve/diagonal,
-/obj/effect/floor_decal/corner/mauve/diagonal{
- icon_state = "corner_white_diagonal";
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"baa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bab" = (
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/table/standard,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = -5;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/machinery/firealarm/north,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/vending/cola,
/turf/simulated/floor/tiled,
-/area/medical/icu)
-"bac" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"bad" = (
-/turf/simulated/wall,
-/area/medical/icu)
-"bae" = (
+/area/hallway/primary/starboard)
+"baP" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"baf" = (
+"baQ" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -30134,48 +30936,48 @@
/obj/machinery/vending/cigarette,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"bag" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Librarian"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"bah" = (
-/turf/simulated/wall,
-/area/medical/reception)
-"bai" = (
-/obj/structure/curtain/black,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"baj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+"baR" = (
+/obj/effect/floor_decal/corner/lime{
dir = 10
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/library)
-"bak" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/library)
-"bal" = (
-/obj/structure/bed/chair/office/dark{
+/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
},
-/turf/simulated/floor/wood,
-/area/library)
-"bam" = (
+/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{
+ name = "Maintenance Access";
+ req_access = list(66)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"baV" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable{
d1 = 1;
@@ -30188,7 +30990,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"ban" = (
+"baW" = (
/obj/machinery/power/terminal{
dir = 4
},
@@ -30212,7 +31014,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"bao" = (
+"baX" = (
/obj/machinery/power/smes/buildable{
charge = 0;
RCon_tag = "Substation - Command Main"
@@ -30224,13 +31026,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"bap" = (
+"baY" = (
/obj/machinery/newscaster{
pixel_x = -30
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"baq" = (
+"baZ" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -30238,34 +31040,34 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bar" = (
+"bba" = (
/obj/structure/table/wood,
/obj/machinery/computer/skills,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bas" = (
+"bbb" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bat" = (
+"bbc" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bau" = (
+"bbd" = (
/obj/machinery/light_switch{
pixel_x = 32
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"bav" = (
-/turf/simulated/wall,
-/area/bridge/meeting_room)
-"baw" = (
+"bbe" = (
/obj/machinery/door/airlock{
name = "Restroom"
},
/turf/simulated/floor/tiled/freezer,
/area/bridge/meeting_room)
-"bax" = (
+"bbf" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/meeting_room)
+"bbg" = (
/obj/structure/disposalpipe/junction{
dir = 1;
icon_state = "pipe-j1"
@@ -30279,7 +31081,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"bay" = (
+"bbh" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -30302,7 +31104,7 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"baz" = (
+"bbi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -30323,7 +31125,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"baA" = (
+"bbj" = (
/obj/machinery/door/airlock/command{
name = "Cryogenic Storage";
req_access = list(19)
@@ -30345,7 +31147,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/heads/cryo)
-"baB" = (
+"bbk" = (
/obj/machinery/light_switch{
pixel_x = -24;
pixel_y = 32
@@ -30366,7 +31168,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"baC" = (
+"bbl" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -30384,10 +31186,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"baD" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
+"bbm" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -30396,29 +31195,34 @@
d2 = 8;
icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"baE" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
+"bbn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"baF" = (
+"bbo" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"baG" = (
-/obj/machinery/door/window/westleft{
- dir = 4;
- name = "Library Desk";
- req_access = list(37)
+"bbp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access = list(26)
},
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/library)
-"baH" = (
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bbq" = (
/turf/simulated/wall,
/area/storage/tech)
-"baI" = (
+"bbr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
@@ -30433,10 +31237,10 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"baJ" = (
+"bbs" = (
/turf/simulated/wall,
/area/maintenance/research_port)
-"baK" = (
+"bbt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30447,17 +31251,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"baL" = (
+"bbu" = (
/turf/simulated/wall,
/area/assembly/robotics)
-"baM" = (
+"bbv" = (
/obj/structure/morgue,
/turf/simulated/floor/tiled/dark{
name = "cooled dark floor";
temperature = 278
},
/area/assembly/robotics)
-"baN" = (
+"bbw" = (
/obj/machinery/camera/network/research{
c_tag = "Research - Robotics Morgue"
},
@@ -30469,7 +31273,7 @@
temperature = 278
},
/area/assembly/robotics)
-"baO" = (
+"bbx" = (
/obj/structure/sign/nosmoking_1{
pixel_y = 32
},
@@ -30478,13 +31282,13 @@
temperature = 278
},
/area/assembly/robotics)
-"baP" = (
+"bby" = (
/turf/simulated/floor/tiled/dark{
name = "cooled dark floor";
temperature = 278
},
/area/assembly/robotics)
-"baQ" = (
+"bbz" = (
/obj/machinery/door/airlock/research{
desc = "It opens and closes. Leads to the Robotics Morgue";
name = "Robotics Morgue";
@@ -30497,7 +31301,7 @@
temperature = 278
},
/area/assembly/robotics)
-"baR" = (
+"bbA" = (
/obj/machinery/button/windowtint{
id = "CybGlass";
pixel_x = 0;
@@ -30505,7 +31309,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"baS" = (
+"bbB" = (
/obj/machinery/computer/operating{
name = "Robotics Operating Computer"
},
@@ -30518,7 +31322,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"baT" = (
+"bbC" = (
/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"
@@ -30532,7 +31336,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"baU" = (
+"bbD" = (
/obj/structure/table/standard,
/obj/item/weapon/bonegel,
/obj/item/weapon/bonesetter,
@@ -30553,7 +31357,7 @@
/obj/item/weapon/hemostat,
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"baV" = (
+"bbE" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -30562,7 +31366,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"baW" = (
+"bbF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30573,7 +31377,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"baX" = (
+"bbG" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bbH" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/industrial/loading{
icon_state = "loadingarea";
@@ -30581,7 +31393,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"baY" = (
+"bbI" = (
/obj/effect/floor_decal/corner/paleblue/full{
icon_state = "corner_white_full";
dir = 1
@@ -30596,16 +31408,21 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"baZ" = (
+"bbJ" = (
/turf/simulated/floor/plating,
/area/turbolift/main_station)
-"bba" = (
+"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)
-"bbb" = (
+"bbL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30619,7 +31436,82 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bbc" = (
+"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{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "CHE2shutters";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"bbN" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/box/beakers,
+/obj/item/clothing/glasses/science,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bbO" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bbP" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/item/weapon/storage/fancy/vials{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bbQ" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/mauve/full{
icon_state = "corner_white_full";
@@ -30638,7 +31530,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bbe" = (
+"bbR" = (
/obj/structure/table/standard,
/obj/effect/floor_decal/corner/mauve{
icon_state = "corner_white";
@@ -30659,7 +31551,17 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bbf" = (
+"bbS" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bbT" = (
/obj/effect/floor_decal/corner/mauve/full{
icon_state = "corner_white_full";
dir = 1
@@ -30673,27 +31575,71 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bbg" = (
+"bbU" = (
/obj/machinery/disposal{
name = "MediExpress - Surgery"
},
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/medical/medbay)
-"bbh" = (
+"bbV" = (
+/obj/machinery/disposal{
+ name = "MediExpress - Storage"
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/medical/medbay)
+"bbW" = (
/obj/machinery/disposal{
name = "MediExpress - Virology"
},
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/tiled,
/area/medical/medbay)
-"bbi" = (
+"bbX" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
dir = 8
},
-/turf/simulated/floor/wood,
-/area/library)
-"bbj" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/icu)
+"bbY" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled,
+/area/medical/icu)
+"bbZ" = (
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/medical/icu)
+"bca" = (
/obj/structure/closet/secure_closet/medical_wall{
name = "O- Blood Locker";
pixel_x = 0;
@@ -30713,7 +31659,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
-"bbk" = (
+"bcb" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -30730,7 +31676,7 @@
},
/turf/simulated/floor/tiled,
/area/medical/icu)
-"bbl" = (
+"bcc" = (
/obj/machinery/power/apc{
dir = 4;
name = "east bump";
@@ -30751,26 +31697,12 @@
},
/turf/simulated/floor/tiled,
/area/medical/icu)
-"bbm" = (
-/turf/simulated/floor/wood,
-/area/library)
-"bbn" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bbo" = (
+"bcd" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/vending/snack,
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"bbp" = (
+"bce" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -30782,7 +31714,7 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"bbq" = (
+"bcf" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk{
@@ -30790,128 +31722,120 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/starboard)
-"bbs" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bbt" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
+"bcg" = (
+/turf/simulated/floor/tiled/ramp{
+ icon_state = "ramptop";
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bbu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bbv" = (
-/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)
-"bbw" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bbx" = (
-/obj/machinery/computer/cryopod{
- pixel_y = 32
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/main)
-"bby" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bbz" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/turf/simulated/floor/tiled,
-/area/maintenance/bar)
-"bbA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
+"bch" = (
/obj/machinery/door/firedoor,
+/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"bbB" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/device/radio/intercom{
- pixel_y = -32
+/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/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/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/structure/flora/pottedplant/random,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/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,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Staff Smoking Lounge"
+ },
+/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/weapon/storage/box/donut,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/newscaster{
+ pixel_y = 32
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"bbC" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/weapon/pen/red,
-/obj/item/device/eftpos{
- eftpos_name = "Library EFTPOS scanner"
+/area/crew_quarters/medbreak)
+"bco" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/item/weapon/stool/padded,
+/obj/machinery/ringer{
+ department = "Medbay";
+ id = "medbay_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ req_access = list(5)
},
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"bbD" = (
-/obj/item/device/radio/headset/headset_service,
-/obj/structure/cult/tome,
-/obj/item/clothing/under/librarian,
-/turf/simulated/floor/tiled/dark,
-/area/library)
-"bbE" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bcp" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/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"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bcr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30928,7 +31852,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"bbF" = (
+"bcs" = (
/obj/machinery/door/airlock/engineering{
name = "Command Substation";
req_one_access = list(11,24)
@@ -30941,7 +31865,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"bbG" = (
+"bct" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30954,13 +31878,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"bbH" = (
+"bcu" = (
/obj/machinery/power/breakerbox/activated{
RCon_tag = "Command Main Substation Bypass"
},
/turf/simulated/floor/plating,
/area/maintenance/substation/command)
-"bbI" = (
+"bcv" = (
/obj/machinery/light{
dir = 8;
icon_state = "tube1";
@@ -30968,7 +31892,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bbJ" = (
+"bcw" = (
/obj/structure/bed/chair/comfy/brown{
dir = 4
},
@@ -30979,13 +31903,13 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bbK" = (
+"bcx" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/hop,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bbL" = (
+"bcy" = (
/obj/structure/bed/chair/office/dark{
dir = 8
},
@@ -31002,7 +31926,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bbM" = (
+"bcz" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1";
@@ -31021,7 +31945,7 @@
/mob/living/simple_animal/corgi/Ian,
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"bbN" = (
+"bcA" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Restroom";
dir = 4
@@ -31034,7 +31958,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/bridge/meeting_room)
-"bbO" = (
+"bcB" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -31047,20 +31971,20 @@
},
/turf/simulated/floor/tiled/freezer,
/area/bridge/meeting_room)
-"bbP" = (
+"bcC" = (
/obj/structure/table/wood,
/turf/simulated/floor/wood,
/area/bridge)
-"bbQ" = (
+"bcD" = (
/obj/machinery/photocopier,
/turf/simulated/floor/carpet,
/area/bridge)
-"bbR" = (
+"bcE" = (
/obj/machinery/disposal,
/obj/structure/disposalpipe/trunk,
/turf/simulated/floor/wood,
/area/bridge)
-"bbS" = (
+"bcF" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -31076,7 +32000,7 @@
},
/turf/simulated/floor/plating,
/area/bridge)
-"bbT" = (
+"bcG" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/machinery/newscaster/security_unit{
pixel_x = -32
@@ -31088,21 +32012,18 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"bbU" = (
-/obj/machinery/hologram/holopad,
+"bcH" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"bbV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
- },
+"bcI" = (
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"bbW" = (
+"bcJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"bcK" = (
/obj/structure/janitorialcart,
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/light/small{
@@ -31110,21 +32031,21 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bbX" = (
+"bcL" = (
/obj/structure/sink/kitchen{
pixel_y = 32
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bbY" = (
+"bcM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bbZ" = (
+"bcN" = (
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bca" = (
+"bcO" = (
/obj/item/device/radio/intercom{
desc = "Talk... listen through this.";
name = "Station Intercom (Brig Radio)";
@@ -31134,24 +32055,23 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bcb" = (
-/obj/machinery/door/window/southright{
- name = "Library Desk";
- req_access = list(37)
+"bcP" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/library)
-"bcc" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bcQ" = (
/turf/simulated/wall/r_wall,
/area/storage/tech)
-"bcd" = (
+"bcR" = (
/obj/machinery/vending/assist,
/turf/simulated/floor/plating,
/area/storage/tech)
-"bce" = (
+"bcS" = (
/obj/structure/cable/green{
d2 = 4;
icon_state = "0-4"
@@ -31167,7 +32087,7 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bcf" = (
+"bcT" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5
@@ -31179,13 +32099,13 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bcg" = (
+"bcU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bch" = (
+"bcV" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
@@ -31197,7 +32117,7 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bci" = (
+"bcW" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -31208,7 +32128,14 @@
/obj/item/device/analyzer,
/turf/simulated/floor/plating,
/area/storage/tech)
-"bcj" = (
+"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/machinery/alarm/cold{
dir = 1;
pixel_y = -22
@@ -31218,7 +32145,7 @@
temperature = 278
},
/area/assembly/robotics)
-"bck" = (
+"bda" = (
/obj/item/device/radio/intercom{
pixel_y = -27
},
@@ -31227,7 +32154,7 @@
temperature = 278
},
/area/assembly/robotics)
-"bcl" = (
+"bdb" = (
/obj/structure/morgue{
icon_state = "morgue1";
dir = 8
@@ -31237,7 +32164,7 @@
temperature = 278
},
/area/assembly/robotics)
-"bcm" = (
+"bdc" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -31246,14 +32173,14 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bcn" = (
+"bdd" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bco" = (
+"bde" = (
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bcp" = (
+"bdf" = (
/obj/structure/table/standard,
/obj/item/device/mmi,
/obj/item/device/mmi,
@@ -31263,7 +32190,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bcq" = (
+"bdg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
dir = 4;
@@ -31280,14 +32207,14 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/assembly/robotics)
-"bcr" = (
+"bdh" = (
/obj/effect/floor_decal/corner/mauve{
icon_state = "corner_white";
dir = 9
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bcs" = (
+"bdi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31300,7 +32227,22 @@
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bcu" = (
+"bdj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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;
icon_state = "direction_eng";
@@ -31339,31 +32281,29 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/central_one)
-"bcv" = (
+"bdl" = (
/obj/effect/floor_decal/industrial/hatch/yellow,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bcw" = (
+"bdm" = (
/obj/machinery/light/small{
dir = 1
},
/turf/simulated/floor/plating,
/area/turbolift/main_station)
-"bcx" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bdn" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"bcy" = (
+/area/hallway/primary/central_one)
+"bdo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31375,30 +32315,73 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bcz" = (
+"bdp" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
},
/turf/simulated/floor/tiled,
/area/hallway/primary/central_one)
-"bcA" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
+"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{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "CHE2shutters";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
dir = 4
},
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"bdr" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
},
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"bcB" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/wood,
-/area/library)
-"bcC" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bds" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bdt" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bdu" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bdv" = (
/obj/machinery/chem_master,
/obj/effect/floor_decal/corner/mauve{
icon_state = "corner_white";
@@ -31406,7 +32389,11 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bcD" = (
+"bdw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bdx" = (
/obj/structure/table/standard,
/obj/machinery/button/remote/blast_door{
id = "CHE2shutters";
@@ -31428,7 +32415,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bcE" = (
+"bdy" = (
/obj/effect/floor_decal/corner/lime{
dir = 10
},
@@ -31439,14 +32426,14 @@
},
/turf/simulated/floor/tiled,
/area/medical/medbay)
-"bcF" = (
+"bdz" = (
/obj/effect/floor_decal/corner/lime{
dir = 10
},
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/medical/medbay)
-"bcG" = (
+"bdA" = (
/obj/effect/floor_decal/corner/lime{
dir = 10
},
@@ -31456,7 +32443,24 @@
},
/turf/simulated/floor/tiled,
/area/medical/medbay)
-"bcH" = (
+"bdB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/icu)
+"bdC" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 5;
icon_state = "intact"
@@ -31477,7 +32481,21 @@
},
/turf/simulated/floor/tiled,
/area/medical/icu)
-"bcI" = (
+"bdD" = (
+/obj/effect/floor_decal/corner/beige/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/medical/icu)
+"bdE" = (
/obj/machinery/atmospherics/pipe/simple/hidden{
dir = 10
},
@@ -31488,15 +32506,10 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
-"bcJ" = (
-/obj/structure/table/wood,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/wood,
-/area/library)
-"bcK" = (
+"bdF" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bdG" = (
/obj/effect/floor_decal/corner/pink{
icon_state = "corner_white";
dir = 6
@@ -31510,141 +32523,203 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
-"bcL" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bcM" = (
-/obj/structure/window/reinforced{
- dir = 8
+"bdH" = (
+/turf/simulated/wall,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
+"bdI" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized{
+ dir = 8;
+ id = "ExamR2"
},
-/obj/structure/window/reinforced,
-/turf/simulated/floor/wood,
-/area/library)
-"bcN" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/window/reinforced/polarized{
+ id = "ExamR2"
},
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bcO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 8
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "ExamR2"
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bcP" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/alarm{
+/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/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
+"bdJ" = (
+/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/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
+"bdK" = (
+/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;
- icon_state = "alarm0";
- pixel_x = -22
+ id = "ExamR2"
},
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay)
-"bcQ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 5
+/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)
-"bcR" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
+"bdL" = (
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_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{
+ icon_state = "corner_white_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/plating,
-/area/maintenance/medbay)
-"bcS" = (
-/obj/machinery/door/window/southright{
- name = "Library Display Area";
- req_access = list(37)
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bcT" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/vending/hydronutrients,
/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bcU" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/ramp,
-/area/crew_quarters/sleep/main)
-"bcW" = (
-/obj/machinery/cryopod{
- icon_state = "body_scanner_0";
- dir = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bcX" = (
-/obj/machinery/cryopod{
- icon_state = "body_scanner_0";
- dir = 2
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bcY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
+/area/crew_quarters/medbreak)
+"bdQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled,
-/area/medical/medbay)
-"bcZ" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/medbreak)
+"bdR" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/medbreak)
+"bdS" = (
+/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/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bda" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/biogenerator,
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bdb" = (
+/area/crew_quarters/medbreak)
+"bdT" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bdU" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/item/weapon/stool/padded,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bdV" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bdW" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/drinkingglasses{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/medbreak)
+"bdX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31656,7 +32731,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"bdc" = (
+"bdY" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Head of Personnel's Office";
dir = 1
@@ -31668,7 +32743,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bdd" = (
+"bdZ" = (
/obj/structure/bed/chair/comfy/brown{
dir = 4
},
@@ -31680,7 +32755,7 @@
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bde" = (
+"bea" = (
/obj/structure/table/wood,
/obj/item/weapon/packageWrap,
/obj/item/weapon/hand_labeler,
@@ -31691,7 +32766,7 @@
/obj/item/weapon/pen,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bdf" = (
+"beb" = (
/obj/machinery/button/windowtint{
id = "hop";
pixel_y = -24;
@@ -31715,11 +32790,11 @@
/obj/machinery/account_database,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bdg" = (
+"bec" = (
/obj/machinery/papershredder,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/hop)
-"bdh" = (
+"bed" = (
/obj/machinery/computer/security/mining,
/obj/machinery/atm{
pixel_x = 32
@@ -31730,10 +32805,10 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/heads/hop)
-"bdi" = (
+"bee" = (
/turf/simulated/floor/tiled/freezer,
/area/bridge/meeting_room)
-"bdj" = (
+"bef" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -31747,7 +32822,7 @@
/obj/machinery/light/small,
/turf/simulated/floor/tiled/freezer,
/area/bridge/meeting_room)
-"bdk" = (
+"beg" = (
/obj/machinery/camera/network/command{
c_tag = "Bridge - Auxiliary Office";
dir = 4
@@ -31757,7 +32832,7 @@
},
/turf/simulated/floor/wood,
/area/bridge)
-"bdl" = (
+"beh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -31767,7 +32842,7 @@
},
/turf/simulated/floor/carpet,
/area/bridge)
-"bdm" = (
+"bei" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
@@ -31780,7 +32855,7 @@
},
/turf/simulated/floor/wood,
/area/bridge)
-"bdn" = (
+"bej" = (
/obj/machinery/door/airlock/glass_command{
id_tag = "";
name = "Auxiliary Office";
@@ -31798,7 +32873,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/wood,
/area/bridge)
-"bdo" = (
+"bek" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -31820,7 +32895,7 @@
},
/turf/simulated/floor/tiled,
/area/bridge)
-"bdp" = (
+"bel" = (
/obj/machinery/light_switch{
pixel_y = -24
},
@@ -31840,34 +32915,36 @@
/obj/effect/floor_decal/corner/paleblue/diagonal,
/turf/simulated/floor/tiled/white,
/area/bridge)
-"bdq" = (
-/obj/structure/disposalpipe/segment,
+"bem" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"bdr" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/machinery/alarm{
+"ben" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"beo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/radio/intercom{
dir = 8;
- pixel_x = 25;
- pixel_y = 0
+ name = "Station Intercom (General)";
+ pixel_x = 24
},
/turf/simulated/floor/carpet,
/area/crew_quarters/heads/cryo)
-"bds" = (
+"bep" = (
/obj/machinery/light/small/emergency{
dir = 8
},
/turf/simulated/floor/plating,
/area/maintenance/maintcentral)
-"bdt" = (
+"beq" = (
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bdu" = (
+"ber" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
icon_state = "intact-scrubbers";
@@ -31875,27 +32952,19 @@
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bdv" = (
+"bes" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled/dark,
/area/janitor)
-"bdw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"bdx" = (
+"bet" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"beu" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -31910,13 +32979,13 @@
},
/turf/simulated/floor/tiled,
/area/storage/tech)
-"bdy" = (
+"bev" = (
/obj/machinery/camera/network/engineering{
c_tag = "Engineering - Secure Technical Storage"
},
/turf/simulated/floor/tiled,
/area/storage/tech)
-"bdz" = (
+"bew" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -31924,16 +32993,16 @@
},
/turf/simulated/wall/r_wall,
/area/storage/tech)
-"bdA" = (
+"bex" = (
/turf/simulated/floor/plating,
/area/storage/tech)
-"bdB" = (
+"bey" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bdC" = (
+"bez" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -31955,7 +33024,7 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bdD" = (
+"beA" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -31974,7 +33043,7 @@
},
/turf/simulated/floor/plating,
/area/storage/tech)
-"bdE" = (
+"beB" = (
/obj/structure/table/rack{
dir = 8;
layer = 2.9
@@ -31987,11 +33056,11 @@
/obj/item/clothing/glasses/meson,
/turf/simulated/floor/plating,
/area/storage/tech)
-"bdF" = (
+"beC" = (
/obj/random/junk,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdG" = (
+"beD" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -32009,7 +33078,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdH" = (
+"beE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32027,7 +33096,7 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdI" = (
+"beF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32045,7 +33114,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdJ" = (
+"beG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32059,7 +33128,7 @@
},
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdK" = (
+"beH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -32074,7 +33143,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdL" = (
+"beI" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -32090,7 +33159,7 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/maintenance/research_port)
-"bdM" = (
+"beJ" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -32098,7 +33167,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bdN" = (
+"beK" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
dir = 6
@@ -32106,13 +33175,13 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bdO" = (
+"beL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bdP" = (
+"beM" = (
/obj/structure/closet/secure_closet/medical2{
req_access = list(29)
},
@@ -32125,7 +33194,7 @@
},
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"bdQ" = (
+"beN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
dir = 4;
@@ -32138,25 +33207,19 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/assembly/robotics)
-"bdR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/station_map{
- dir = 1;
- pixel_y = -32
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
+"beO" = (
+/obj/machinery/light{
+ dir = 4;
+ status = 0
},
/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"bdS" = (
+/area/hallway/primary/central_one)
+"beP" = (
/obj/structure/sign/directions/evac{
dir = 4;
icon_state = "direction_evac";
@@ -32179,21 +33242,62 @@
},
/turf/simulated/floor/plating,
/area/hallway/primary/central_one)
-"bdT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"beQ" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
},
/obj/structure/cable/green{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"bdV" = (
-/turf/simulated/wall,
-/area/medical/surgerywing)
-"bdW" = (
+/area/hallway/primary/central_one)
+"beR" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/machinery/chem_heater,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beS" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beT" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beU" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/chem_heater,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beW" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"beX" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
/obj/machinery/door/blast/shutters{
@@ -32211,37 +33315,23 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/chemistry)
-"bdX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+"beY" = (
/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bdY" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"beZ" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Port 1";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
+/obj/machinery/light{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "tube1";
+ pixel_x = 0
},
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bdZ" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bfa" = (
/obj/structure/closet/secure_closet/medical_wall{
name = "Stabilization Kit";
pixel_x = -32;
@@ -32273,30388 +33363,92 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/icu)
-"bea" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"beb" = (
-/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"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bec" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bed" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bee" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/random/junk,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bef" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"beg" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"beh" = (
-/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";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bei" = (
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bej" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/window{
- dir = 1;
- req_one_access = list(35)
- },
-/obj/machinery/door/window{
- dir = 2;
- icon_state = "left";
- req_one_access = list(28)
- },
-/turf/simulated/floor/tiled/white,
-/area/hydroponics)
-"bek" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/smartfridge/secure,
-/turf/simulated/floor/tiled/white,
-/area/hydroponics)
-"bel" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atm{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/aft)
-"bem" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/aft)
-"ben" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Cryogenics Control";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"beo" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "kitchenshutters01";
- name = "Kitchen Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/smartfridge/foodheater,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bep" = (
-/turf/simulated/wall,
-/area/hallway/primary/aft)
-"beq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"ber" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Gardener"
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bes" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light{
- dir = 4
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bet" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"beu" = (
-/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)
-"bev" = (
-/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)
-"bew" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bex" = (
-/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)
-"bey" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(57)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/hop)
-"bez" = (
-/obj/machinery/door/airlock{
- name = "Unit 1"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/bridge/meeting_room)
-"beA" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/bridge)
-"beB" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/bridge)
-"beC" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
-/turf/simulated/floor/wood,
-/area/bridge)
-"beD" = (
-/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_access = list(19)
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"beE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- id_tag = "";
- name = "Bridge";
- req_access = list(19)
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"beF" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/cryo)
-"beG" = (
-/obj/machinery/disposal,
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Command Dormitories";
- dir = 1
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/heads/cryo)
-"beH" = (
-/obj/structure/janitorialcart,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"beI" = (
-/obj/structure/closet/jcloset,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"beJ" = (
-/obj/structure/table/steel,
-/obj/item/watertank/janitor,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"beK" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/box/mousetraps{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/weapon/storage/box/mousetraps{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/mousetraps,
-/obj/item/weapon/storage/box/mousetraps{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"beL" = (
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/structure/closet/crate/software_backup,
-/turf/simulated/floor/tiled,
-/area/storage/tech)
-"beM" = (
-/turf/simulated/floor/tiled,
-/area/storage/tech)
-"beN" = (
-/obj/machinery/door/airlock/highsecurity{
- name = "Secure Tech Storage";
- req_access = list(19,23)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"beO" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/security/mining,
-/obj/item/weapon/circuitboard/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"beP" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/powermonitor{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/security/engineering,
-/obj/item/weapon/circuitboard/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"beQ" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/clothing/gloves/yellow,
-/obj/item/device/t_scanner,
-/obj/item/clothing/glasses/meson,
-/obj/item/device/multitool,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"beR" = (
-/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)
-"beS" = (
-/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/research_port)
-"beT" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"beU" = (
-/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)
-"beV" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"beW" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/conveyor{
- backwards = 4;
- desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
- dir = 8;
- id = "RobotSurg"
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"beX" = (
-/obj/machinery/conveyor{
- backwards = 4;
- desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
- dir = 8;
- id = "RobotSurg"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"beY" = (
-/obj/machinery/conveyor{
- backwards = 4;
- desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
- dir = 8;
- id = "RobotSurg"
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"beZ" = (
-/obj/structure/plasticflaps,
-/obj/machinery/door/firedoor,
-/obj/machinery/conveyor{
- backwards = 4;
- desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
- dir = 8;
- id = "RobotSurg"
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bfa" = (
-/obj/machinery/conveyor{
- backwards = 10;
- dir = 5;
- id = "RobotSurg"
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
"bfb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
+/area/medical/icu)
"bfc" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "RobotSurg"
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
+/area/medical/icu)
"bfd" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "CybGlass"
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/window/reinforced/polarized{
- dir = 8;
- id = "CybGlass"
- },
-/obj/structure/window/reinforced/polarized{
- id = "CybGlass"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
"bfe" = (
-/obj/effect/floor_decal/corner/paleblue{
+/obj/effect/floor_decal/corner/pink{
icon_state = "corner_white";
dir = 6
},
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/bed/roller,
+/obj/machinery/ringer{
+ department = "Medbay";
+ id = "medbay_ringer";
+ pixel_x = 30;
+ pixel_y = 0;
+ req_access = list(5)
},
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
"bff" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- 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)
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/carpet/blue,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
"bfg" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/turbolift/main_station)
+/obj/structure/table/standard,
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Examination Room Emergency Phone";
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
"bfh" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- 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)
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
"bfi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
"bfj" = (
-/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)
-"bfk" = (
-/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)
-"bfl" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
- name = "Chemistry Cleaner";
- pixel_x = -2;
- pixel_y = -2
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bfm" = (
-/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)
-"bfn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bfp" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bfq" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "kitchenshutters01";
- name = "Kitchen Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/item/toy/figure/chef,
-/obj/machinery/ringer_button{
- id = "kitchen_ringer";
- pixel_x = -5;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfr" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bfs" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bft" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bfu" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/iv_drip,
-/obj/machinery/light{
- dir = 4;
- status = 0
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bfv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfw" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfx" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/chemical_dispenser/bar_soft/full{
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfy" = (
-/obj/structure/table/stone/marble,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/appliance/mixer/candy{
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfz" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfA" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bfB" = (
-/obj/machinery/appliance/cooker/oven,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfC" = (
-/obj/machinery/appliance/cooker/fryer,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfD" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bfE" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/door/window{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- 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/tiled,
-/area/hydroponics)
-"bfF" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bfG" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/aft)
-"bfH" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "kitchenshutters01";
- name = "Kitchen Shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/button/remote/blast_door{
- id = "kitchenshutters01";
- name = "Kitchen Shutters Control";
- pixel_x = -32;
- pixel_y = 0;
- req_access = list(28)
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfJ" = (
-/turf/simulated/wall/r_wall,
-/area/medical/chemistry)
-"bfK" = (
-/obj/effect/landmark/start{
- name = "Chef"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfL" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/reagent_containers/glass/beaker/bowl,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bfM" = (
-/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)
-"bfN" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/vending/snack,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bfO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bfP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bfQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bfR" = (
-/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)
-"bfS" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/freezer,
-/area/bridge/meeting_room)
-"bfT" = (
-/obj/structure/toilet{
- icon_state = "toilet00";
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer,
-/area/bridge/meeting_room)
-"bfU" = (
-/obj/machinery/newscaster{
- pixel_x = -30
- },
-/turf/simulated/floor/wood,
-/area/bridge)
-"bfV" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = -30
- },
-/turf/simulated/floor/carpet,
-/area/bridge)
-"bfW" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/bridge)
-"bfX" = (
-/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)
-"bfY" = (
-/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)
-"bfZ" = (
-/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)
-"bga" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/cryo)
-"bgb" = (
-/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)
-"bgc" = (
-/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)
-"bgd" = (
-/obj/structure/closet,
-/obj/item/weapon/bikehorn,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bge" = (
-/obj/structure/ladder{
- icon_state = "ladder01";
- pixel_y = 16
- },
-/turf/simulated/open,
-/area/maintenance/maintcentral)
-"bgf" = (
-/obj/structure/mopbucket,
-/obj/item/weapon/mop,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bgg" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgh" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/robotics{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/item/weapon/circuitboard/mecha_control{
- pixel_x = 1;
- pixel_y = -1
- },
-/turf/simulated/floor/tiled,
-/area/storage/tech)
-"bgi" = (
-/obj/structure/sign/securearea,
-/turf/simulated/wall/r_wall,
-/area/storage/tech)
-"bgj" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/message_monitor{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/crew{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/crew{
- pixel_x = -1;
- pixel_y = 1
- },
-/obj/item/weapon/circuitboard/arcade/battle,
-/obj/item/weapon/circuitboard/arcade/orion_trail,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bgk" = (
-/obj/effect/landmark/start{
- name = "Chef"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgl" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/unary_atmos/heater,
-/obj/item/weapon/circuitboard/unary_atmos/cooler{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bgm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bgn" = (
-/obj/machinery/conveyor{
- backwards = 1;
- id = "RobotSurg"
- },
-/obj/structure/plasticflaps,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bgo" = (
-/obj/structure/grille,
-/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/machinery/door/firedoor,
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "CybGlass"
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bgp" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/research{
- desc = "It opens and closes. ";
- name = "Cyborgification Bay";
- req_access = list(29)
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bgq" = (
-/obj/structure/grille,
-/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/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bgr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/polarized{
- dir = 4;
- id = "CybGlass"
- },
-/obj/structure/window/reinforced/polarized{
- dir = 1;
- id = "CybGlass"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bgs" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bgt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bgu" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bgv" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bgw" = (
-/obj/turbolift_map_holder/aurora/civilian,
-/turf/simulated/floor/plating,
-/area/turbolift/main_station)
-"bgx" = (
-/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)
-"bgy" = (
-/obj/effect/floor_decal/corner/mauve/full,
-/obj/structure/table/standard,
-/obj/machinery/button/remote/blast_door{
- id = "CHE3shutters";
- name = "Desk Shutter Control";
- pixel_x = 6;
- pixel_y = 0;
- req_access = list(33)
- },
-/obj/machinery/button/remote/blast_door{
- id = "CHE2shutters";
- name = "Window Shutter Control";
- pixel_x = -6;
- pixel_y = 0;
- req_access = list(33)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bgz" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bgA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bgB" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/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,
-/obj/item/stack/material/phoron,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bgC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bgD" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/chem_heater,
-/turf/simulated/floor/tiled/white,
-/area/rnd/misc_lab)
-"bgE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bgF" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Chemistry Laboratory";
- req_access = list(33)
- },
-/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/chemistry)
-"bgG" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/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/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bgH" = (
-/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
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bgI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgJ" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/device/mass_spectrometer,
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bgK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bgL" = (
-/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"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bgM" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bgN" = (
-/obj/structure/bed,
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/item/weapon/bedsheet/medical,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bgO" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/closet/secure_closet/freezer/kitchen,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgP" = (
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bgQ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bgR" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bgS" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bgT" = (
-/turf/simulated/wall,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bgU" = (
-/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/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bgV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/wood,
-/area/library)
-"bgW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgX" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/reagentgrinder{
- pixel_y = 8
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgY" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/material/knife,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bgZ" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/closet/secure_closet/freezer/fridge,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bha" = (
-/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)
-"bhb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/vending/hydroseeds{
- prices = list();
- restock_items = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bhc" = (
-/obj/effect/landmark/start{
- name = "Chef"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bhd" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/material/kitchen/rollingpin,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bhe" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/reagent_containers/food/condiment/enzyme,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bhf" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bhg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bhh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bhi" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bhj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhk" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhl" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "bridge blast";
- name = "Bridge Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/bridge)
-"bhm" = (
-/obj/machinery/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_access = list(19)
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bhn" = (
-/obj/machinery/door/airlock/glass_command{
- id_tag = "";
- name = "Bridge";
- req_access = list(19)
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bho" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhq" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhr" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/highsecurity{
- id_tag = "bunker1";
- name = "Command Bunker Access";
- req_access = list(19)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bht" = (
-/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)
-"bhu" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bhv" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bhw" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/vending/vendors,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bhx" = (
-/obj/machinery/light{
- dir = 4;
- status = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bhy" = (
-/obj/structure/closet/l3closet/janitor,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bhz" = (
-/obj/item/weapon/aicard,
-/obj/item/weapon/aiModule/reset,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhA" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/item/weapon/wirecutters,
-/obj/structure/table/steel,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhB" = (
-/obj/item/stack/cable_coil{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhC" = (
-/obj/item/weapon/module/power_control,
-/obj/item/weapon/airlock_electronics,
-/obj/structure/table/steel,
-/obj/machinery/camera/network/engineering{
- c_tag = "Engineering - Technical Storage";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhD" = (
-/obj/machinery/cell_charger{
- pixel_y = 5
- },
-/obj/item/device/multitool,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhE" = (
-/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_x = 0;
- pixel_y = -32
- },
-/obj/structure/table/steel,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhF" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"bhG" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/bag/circuits/basic,
-/obj/item/device/integrated_electronics/wirer,
-/obj/item/device/integrated_electronics/debugger,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhH" = (
-/obj/machinery/conveyor{
- blood_color = 1;
- id = "RobotSurg"
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhI" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "RobotSurg"
- },
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhJ" = (
-/obj/machinery/disposal,
-/obj/machinery/camera/network/research{
- c_tag = "Research - Robotics Manufacturing"
- },
-/obj/structure/disposalpipe/trunk,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhK" = (
-/obj/structure/table/rack{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- desc = "A blue toolbox containing mechanic-related tools."
- },
-/obj/item/weapon/storage/toolbox/mechanical{
- desc = "A blue toolbox containing mechanic-related tools."
- },
-/obj/machinery/requests_console{
- department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/weapon/storage/toolbox/electrical,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/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/weapon/storage/belt/utility,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhL" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/structure/sign/nosmoking_1{
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhM" = (
-/obj/machinery/vending/robotics{
- products = list(/obj/item/clothing/suit/storage/toggle/labcoat = 4, /obj/item/clothing/under/rank/roboticist = 4, /obj/item/stack/cable_coil = 4, /obj/item/weapon/cell/high = 12, /obj/item/device/assembly/prox_sensor = 8, /obj/item/device/assembly/signaler = 3, /obj/item/device/healthanalyzer = 8, /obj/item/weapon/scalpel = 2, /obj/item/weapon/circular_saw = 2, /obj/item/weapon/tank/anesthetic = 2, /obj/item/clothing/mask/breath/medical = 5, /obj/item/weapon/screwdriver = 5, /obj/item/weapon/crowbar = 5)
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhN" = (
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"bhO" = (
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"bhP" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bhQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bhR" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/obj/item/weapon/folder/purple,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bhS" = (
-/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/assembly/robotics)
-"bhT" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bhU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bhV" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bhW" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central_one)
-"bhY" = (
-/obj/machinery/optable,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bhZ" = (
-/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";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bia" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/seed_extractor,
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bib" = (
-/obj/effect/floor_decal/corner/green,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bic" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/table/stone/marble,
-/obj/item/weapon/storage/box/produce,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bid" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/table/stone/marble,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bie" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bif" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"big" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bih" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bii" = (
-/obj/machinery/button/remote/blast_door{
- id = "ICUshutters";
- name = "ICU Shutters";
- pixel_x = -24;
- pixel_y = 0;
- req_access = list(66)
- },
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bij" = (
-/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/hydroponics)
-"bik" = (
-/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)
-"bil" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/obj/item/weapon/reagent_containers/chem_disp_cartridge,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bim" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bin" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "kitchenshutters01";
- name = "Kitchen Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bio" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bip" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biq" = (
-/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/kitchen)
-"bir" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bis" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bit" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"biu" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biv" = (
-/obj/machinery/chemical_dispenser,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"biw" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bix" = (
-/obj/structure/table/reinforced,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "kitchenshutters01";
- name = "Kitchen Shutters"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biy" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/requests_console{
- department = "Kitchen";
- departmentType = 1;
- name = "Kitchen Requests Console";
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biz" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biA" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Camera 7";
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"biB" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biC" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biD" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/junction/yjunction{
- icon_state = "pipe-y";
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biE" = (
-/obj/structure/table/glass,
-/obj/item/device/eftpos{
- eftpos_name = "Medbay EFTPOS scanner"
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"biF" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/button/remote/blast_door{
- id = "kitchenshutters02";
- name = "Kitchen Shutters Control";
- pixel_x = 0;
- pixel_y = -32;
- req_access = list(28)
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biG" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/closet/secure_closet/CMO,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - CMO's Office"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"biH" = (
-/obj/item/modular_computer/console/preset/medical,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"biI" = (
-/obj/machinery/computer/med_data,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"biJ" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"biK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"biL" = (
-/turf/simulated/wall,
-/area/maintenance/medbay)
-"biM" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biN" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biO" = (
-/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)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biQ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/bridge)
-"biR" = (
-/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)
-"biS" = (
-/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_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"biT" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/bridge)
-"biU" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"biX" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/aibunker)
-"biY" = (
-/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)
-"biZ" = (
-/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)
-"bja" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bjb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bjc" = (
-/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)
-"bjd" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(29)
- },
-/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,
-/area/assembly/robotics)
-"bje" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjf" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjg" = (
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjh" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bji" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjj" = (
-/obj/effect/floor_decal/corner/orange{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"bjk" = (
-/obj/effect/floor_decal/corner/orange{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"bjl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bjn" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bjo" = (
-/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
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bjp" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_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)
-"bjq" = (
-/turf/simulated/floor/plating,
-/area/turbolift/main_station_aux)
-"bjr" = (
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bjs" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bjt" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bju" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bjv" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bjw" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/requests_console{
- department = "Medical Bay";
- departmentType = 1;
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 1;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Reception Emergency Phone";
- pixel_x = -5;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bjx" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/filingcabinet/chestdrawer,
-/obj/structure/sign/nosmoking_1{
- pixel_y = 32
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Lobby 3";
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bjy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- 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)
-"bjz" = (
-/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)
-"bjA" = (
-/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)
-"bjB" = (
-/turf/simulated/wall,
-/area/medical/main_storage)
-"bjC" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/medical/icu)
-"bjD" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(28)
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/kitchen)
-"bjE" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bjF" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- 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)
-"bjG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"bjH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bjI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "kitchenshutters02";
- name = "Kitchen Shutters"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bjJ" = (
-/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{
- name = "\improper Medical - Exam Room 1"
- })
-"bjK" = (
-/turf/simulated/floor/tiled/ramp,
-/area/medical/medbay2)
-"bjL" = (
-/obj/machinery/chem_master,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bjM" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/reagentgrinder{
- pixel_y = 8
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bjN" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "kitchenshutters02";
- name = "Kitchen Shutters"
- },
-/obj/item/weapon/reagent_containers/food/snacks/mint,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bjO" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 4
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bjP" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 1
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bjQ" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 1
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bjR" = (
-/obj/vehicle/train/cargo/engine/mining{
- icon_state = "mining_engine";
- dir = 2
- },
-/obj/structure/track{
- icon_state = "track12"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bjS" = (
-/obj/structure/table/glass,
-/obj/item/device/megaphone,
-/obj/item/device/radio{
- frequency = 1487;
- name = "Medbay Emergency Radio Link";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bjT" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/obj/item/device/destTagger,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/packageWrap,
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "kitchenshutters02";
- name = "Kitchen Shutters"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bjU" = (
-/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)
-"bjV" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"bjW" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/button/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/chair/office/light,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bjX" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/computer/security/telescreen{
- name = "Departmental Cameras";
- network = list("Medical");
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bjY" = (
-/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)
-"bjZ" = (
-/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_access = list(19)
- },
-/obj/machinery/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)
-"bka" = (
-/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)
-"bkb" = (
-/turf/simulated/wall,
-/area/bridge/minibar)
-"bkc" = (
-/turf/simulated/wall/r_wall,
-/area/bridge/minibar)
-"bkd" = (
-/obj/machinery/door/firedoor/multi_tile,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/multi_tile/glass{
- name = "Kitchen";
- req_access = list(28);
- req_one_access = null
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bke" = (
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bkf" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/closet/secure_closet/bar,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bkg" = (
-/obj/structure/table/rack,
-/obj/item/weapon/caution{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/weapon/caution{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/caution,
-/obj/item/weapon/caution{
- pixel_x = -2;
- pixel_y = 2
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"bkh" = (
-/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)
-"bki" = (
-/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)
-"bkj" = (
-/obj/item/device/radio/intercom{
- pixel_x = -27
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkk" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 2;
- sortType = "Robotics";
- name = "Robotics"
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkl" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkm" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkn" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bko" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkp" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/machinery/ringer{
- department = "Robotics";
- id = "robo_ringer";
- pixel_x = 30;
- req_access = list(29)
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bkq" = (
-/turf/simulated/floor/tiled/dark,
-/area/assembly/robotics)
-"bkr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bks" = (
-/obj/effect/floor_decal/corner/mauve/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bkt" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bku" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/computer/guestpass{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bkv" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/turbolift/main_station_aux)
-"bkw" = (
-/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{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"bkx" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bky" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bkz" = (
-/obj/structure/closet/gmcloset,
-/obj/item/weapon/flame/lighter/zippo,
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 1;
- name = "Bar Requests Console";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bkA" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bkB" = (
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/coffeemaster/full{
- pixel_y = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bkC" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Camera 6";
- dir = 8
- },
-/obj/machinery/station_map{
- dir = 8;
- pixel_x = 32
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bkD" = (
-/obj/structure/closet/crate/freezer{
- name = "O- Blood Packs"
- },
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bkE" = (
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/bar_alc/full{
- pixel_y = 10
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bkF" = (
-/obj/structure/closet/crate/freezer{
- name = "Fridge"
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bkG" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/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/medbay)
-"bkI" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkJ" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkL" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkM" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bkO" = (
-/obj/machinery/vending/boozeomat{
- density = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bkP" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bkQ" = (
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bkR" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/obj/machinery/light/spot/weak{
- icon_state = "tube_empty";
- dir = 4
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bkS" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/requests_console{
- department = "Medical Bay";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bkT" = (
-/obj/structure/table/wood,
-/obj/machinery/reagentgrinder{
- pixel_y = 12
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bkU" = (
-/obj/structure/flora/pottedplant/random,
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bkV" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/spray/cleaner{
- pixel_x = 6;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/spray/cleaner{
- pixel_x = 2;
- pixel_y = 4
- },
-/obj/item/weapon/reagent_containers/spray/cleaner{
- pixel_x = -2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bkW" = (
-/obj/structure/flora/pottedplant/random,
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bkX" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bkY" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- icon_state = "warningcorner_dust";
- dir = 8
- },
-/obj/structure/ore_box{
- icon_state = "orebox1"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bkZ" = (
-/obj/structure/ore_box{
- icon_state = "orebox1"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"bla" = (
-/obj/structure/track{
- icon_state = "track3"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"blb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/clipboard,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"blc" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bld" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"ble" = (
-/obj/machinery/firealarm/east,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"blf" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/skills,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"blg" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"blh" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bli" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"blj" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"blk" = (
-/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)
-"bll" = (
-/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/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"blm" = (
-/obj/machinery/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
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bln" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"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/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/plating,
-/area/bridge)
-"blp" = (
-/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)
-"blq" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"blr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bls" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"blt" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"blu" = (
-/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)
-"blv" = (
-/turf/simulated/open,
-/area/bridge/aibunker)
-"blw" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/bridge/aibunker)
-"blx" = (
-/obj/structure/ladder/up,
-/turf/simulated/floor/plating,
-/area/bridge/aibunker)
-"bly" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Bar - Bathroom"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"blz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"blA" = (
-/turf/simulated/wall,
-/area/maintenance/substation/research)
-"blB" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/substation/research)
-"blC" = (
-/obj/structure/table/standard,
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/glass{
- amount = 20
- },
-/obj/item/stack/material/glass{
- amount = 50
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"blD" = (
-/obj/structure/table/standard,
-/obj/item/stack/material/plasteel{
- amount = 20
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"blE" = (
-/obj/structure/table/standard,
-/obj/item/weapon/book/manual/ripley_build_and_repair,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/structure/reagent_dispensers/acid{
- pixel_y = 32
- },
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"blF" = (
-/obj/machinery/computer/rdconsole/robotics,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"blG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"blH" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blI" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blM" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blN" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blO" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blS" = (
-/obj/machinery/door/blast/shutters{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "MechBayShutter";
- name = "Mech Bay Shutters";
- opacity = 1
- },
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"blT" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"blU" = (
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"blV" = (
-/obj/machinery/door/window{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Reception Desk";
- req_access = list(66)
- },
-/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
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"blW" = (
-/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
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"blX" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"blY" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"blZ" = (
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bma" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bmb" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/junction/yjunction,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bmc" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- name = "Chemistry";
- sortType = "Chemistry"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bmd" = (
-/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/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bme" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bmf" = (
-/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/white,
-/area/medical/medbay)
-"bmg" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "main_unit_1";
- name = "Unit 1"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bmh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/structure/cable/green{
- d1 = 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/medical/medbay)
-"bmi" = (
-/obj/structure/reagent_dispensers/cookingoil,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bmj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bmk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 6
- },
-/mob/living/carbon/human/monkey/punpun,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bml" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bmm" = (
-/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/white,
-/area/medical/medbay)
-"bmn" = (
-/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)
-"bmo" = (
-/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)
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bmp" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bmq" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/bed/chair,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bmr" = (
-/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{
- name = "\improper Medical - Exam Room 1"
- })
-"bms" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
- },
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bmt" = (
-/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)
-"bmu" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/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
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bmx" = (
-/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)
-"bmy" = (
-/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)
-"bmz" = (
-/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)
-"bmA" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Bar";
- sortType = "Bar"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bmB" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bmD" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced,
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "telescience";
- name = "Containment Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/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)
-"bmE" = (
-/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)
-"bmF" = (
-/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)
-"bmG" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/device/radio/intercom{
- pixel_x = -32
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bmH" = (
-/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)
-"bmI" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bmJ" = (
-/obj/structure/sign/directions/civ{
- pixel_x = 32;
- pixel_y = -8
- },
-/obj/structure/sign/directions/science{
- dir = 8;
- icon_state = "direction_sci";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/sign/directions/engineering{
- dir = 1;
- icon_state = "direction_eng";
- 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)
-"bmK" = (
-/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)
-"bmM" = (
-/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)
-"bmN" = (
-/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)
-"bmO" = (
-/obj/machinery/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/bridge)
-"bmP" = (
-/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)
-"bmQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bmR" = (
-/obj/item/weapon/stool/padded,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bmS" = (
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/coffee/full,
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bmT" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bmU" = (
-/obj/machinery/vending/dinnerware,
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bmV" = (
-/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)
-"bmW" = (
-/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)
-"bmX" = (
-/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)
-"bmY" = (
-/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)
-"bmZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bna" = (
-/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/research_port)
-"bnb" = (
-/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{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bnc" = (
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/sign/electricshock{
- pixel_x = -32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/research)
-"bnd" = (
-/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)
-"bne" = (
-/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)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/research)
-"bnf" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bng" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Robotics Maintenance";
- req_access = list(47)
- },
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bnh" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bni" = (
-/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)
-"bnj" = (
-/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/tiled/white,
-/area/assembly/robotics)
-"bnk" = (
-/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)
-"bnl" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Components Manufacture";
- req_access = list(29)
- },
-/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/assembly/robotics)
-"bnm" = (
-/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,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnn" = (
-/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/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bno" = (
-/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/industrial/outline/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnq" = (
-/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,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnr" = (
-/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{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bns" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnt" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- autoclose = 1;
- dir = 2;
- id_tag = "RobMechBay";
- req_access = list(29)
- },
-/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/assembly/robotics)
-"bnu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnv" = (
-/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)
-"bnw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bnx" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/blast/shutters{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "MechBayShutter";
- name = "Mech Bay Shutters";
- opacity = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bny" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bnz" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/turbolift/main_station_aux)
-"bnA" = (
-/obj/structure/sign/directions/civ{
- pixel_x = -32;
- pixel_y = -8
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/sign/directions/security{
- dir = 1;
- icon_state = "direction_sec";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/sign/directions/com{
- dir = 1;
- icon_state = "direction_com";
- 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)
-"bnB" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"bnC" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/firealarm/west,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Lobby 1";
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bnD" = (
-/obj/effect/floor_decal/corner/lime/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/medical/reception)
-"bnE" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bnF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/glass{
- name = "Bar";
- req_access = list(25)
- },
-/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)
-"bnG" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/button/remote/blast_door{
- id = "entrance_shutters";
- name = "Entrance Shutters Control";
- pixel_x = 0;
- pixel_y = -6;
- req_access = list(66)
- },
-/obj/machinery/button/remote/airlock{
- id = "main_door";
- name = "Triage Door Control";
- pixel_x = 0;
- pixel_y = 6;
- req_access = list(66)
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"bnH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/structure/mirror{
- dir = 4;
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bnI" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnJ" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "main_unit_2";
- name = "Unit 2"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bnK" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/bloodpacks,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bnL" = (
-/obj/effect/floor_decal/corner/lime,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/effect/floor_decal/corner/lime{
- dir = 10
- },
-/obj/effect/floor_decal/sign/gtr,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnN" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm/south,
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnP" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bnQ" = (
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/library)
-"bnR" = (
-/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)
-"bnS" = (
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 1;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Examination Room Emergency Phone";
- pixel_x = 5;
- pixel_y = -4
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Examination Office 1";
- dir = 4;
- icon_state = "camera"
- },
-/obj/structure/table/standard,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bnT" = (
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/structure/table/standard,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bnU" = (
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 7
- },
-/obj/structure/table/standard,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bnV" = (
-/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"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bnW" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/door/airlock/medical{
- name = "Examination Room 1";
- req_one_access = list(5)
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bnX" = (
-/obj/effect/floor_decal/sign/ex,
-/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/white,
-/area/medical/medbay2)
-"bnY" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bnZ" = (
-/obj/effect/floor_decal/sign/p,
-/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/medical/medbay2)
-"boa" = (
-/obj/structure/sign/double/barsign,
-/turf/simulated/wall,
-/area/crew_quarters/bar)
-"bob" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"boc" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 6
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bod" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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)
-"boe" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 9
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/machinery/computer/arcade/orion_trail,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bof" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 2
- },
-/obj/machinery/papershredder,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bog" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"boh" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"boi" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"boj" = (
-/turf/simulated/wall,
-/area/medical/medbay2)
-"bok" = (
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"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 = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- 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"
- },
-/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/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"boq" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Break Room";
- req_access = list(19)
- },
-/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/item/weapon/stool/padded,
-/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/carpet,
-/area/bridge/minibar)
-"bot" = (
-/obj/structure/table/wood,
-/obj/item/weapon/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"
- },
-/turf/simulated/floor/carpet,
-/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 = "tube1";
- pixel_x = 0
- },
-/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";
- pixel_y = 0
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/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{
- charge = 0;
- 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)
-"boz" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/machinery/camera/network/research{
- c_tag = "Research - Robotics Fabrication";
- dir = 4;
- network = list("Research")
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"boA" = (
-/obj/machinery/mecha_part_fabricator,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"boB" = (
-/obj/item/toy/figure/roboticist,
-/obj/machinery/r_n_d/circuit_imprinter,
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"boC" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt.";
- id = "Robocompo";
- name = "components conveyor switch"
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"boD" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boE" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boF" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boH" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boI" = (
-/obj/machinery/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/assembly/robotics)
-"boJ" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Robotics Charging Bay";
- dir = 4;
- network = list("Research","Toxins Test Area")
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boK" = (
-/obj/effect/landmark{
- name = "JoinLateCyborg"
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boM" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boN" = (
-/obj/machinery/button/remote/blast_door{
- desc = "It controls the Mech Bay's shutters.";
- id = "MechBayShutter";
- name = "Mech Bay shutters";
- pixel_x = 28
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"boO" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"boP" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"boQ" = (
-/obj/turbolift_map_holder/aurora/civilian_aux,
-/turf/simulated/floor/plating,
-/area/turbolift/main_station_aux)
-"boR" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/obj/machinery/computer/arcade/battle,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"boS" = (
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/structure/sign/directions/cryo{
- dir = 1;
- icon_state = "direction_cryo";
- pixel_x = 32;
- pixel_y = -8
- },
-/obj/structure/sign/directions/medical{
- dir = 1;
- icon_state = "direction_med";
- 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)
-"boT" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"boU" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/computer/crew,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"boV" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/machinery/computer/med_data/laptop,
-/obj/structure/sign/nosmoking_1{
- pixel_x = 32
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"boW" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"boX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/sign/directions/evac{
- dir = 8;
- icon_state = "direction_evac";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/sign/directions/cryo{
- dir = 8;
- icon_state = "direction_cryo";
- pixel_x = -32;
- pixel_y = -8
- },
-/obj/structure/sign/directions/medical{
- dir = 1;
- icon_state = "direction_med";
- 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)
-"boY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- icon_state = "door_open";
- id_tag = null;
- name = "General Treatment Room";
- req_access = list(66)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"boZ" = (
-/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)
-"bpa" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/gen_treatment)
-"bpb" = (
-/obj/structure/toilet{
- icon_state = "toilet00";
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- id = "main_unit_1";
- name = "Door Bolt Control";
- pixel_x = 5;
- pixel_y = 25;
- req_access = null;
- specialfunctions = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bpc" = (
-/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"
- },
-/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)
-"bpd" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bpe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bpf" = (
-/obj/machinery/computer/med_data/laptop,
-/obj/structure/table/standard,
-/turf/simulated/floor/carpet/blue,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bpg" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bph" = (
-/turf/simulated/floor/carpet/blue,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bpi" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/light_switch{
- pixel_x = 24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"bpj" = (
-/obj/machinery/door/airlock/freezer{
- id_tag = "main_unit_3";
- name = "Unit 3"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bpk" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 4
- },
-/area/crew_quarters/bar)
-"bpl" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bpm" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bpn" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bpo" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bpp" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bpq" = (
-/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)
-"bpr" = (
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/bar)
-"bps" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- id_tag = "CMOdoor";
- name = "Chief Medical Officer's Office";
- req_access = list(40)
- },
-/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)
-"bpt" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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{
- icon_state = "rampbot";
- dir = 4
- },
-/area/crew_quarters/bar)
-"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,
-/turf/simulated/floor/plating,
-/area/crew_quarters/heads/cmo)
-"bpv" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- 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)
-"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/weapon/storage/firstaid/regular{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/firstaid/regular,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- 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
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"bpz" = (
-/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)
-"bpA" = (
-/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)
-"bpB" = (
-/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)
-"bpC" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bpD" = (
-/obj/structure/table/wood,
-/obj/item/weapon/material/ashtray/bronze,
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bpE" = (
-/obj/machinery/vending/boozeomat{
- req_access = list(19)
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bpF" = (
-/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)
-"bpG" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bpH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bpI" = (
-/obj/machinery/door/airlock/engineering{
- name = "Science Substation";
- req_one_access = list(11,24,7)
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/research)
-"bpJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/research)
-"bpK" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Research Main Substation Bypass"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/research)
-"bpL" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "Robocompo"
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bpM" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "Robocompo"
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bpN" = (
-/obj/structure/plasticflaps,
-/obj/machinery/conveyor{
- dir = 8;
- id = "Robocompo"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpO" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "Robocompo"
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpP" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpQ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/cell/high,
-/obj/item/weapon/cell/high,
-/obj/item/device/assembly/prox_sensor,
-/obj/item/device/assembly/prox_sensor,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/weapon/crowbar,
-/obj/item/device/mmi/digital/posibrain,
-/obj/item/device/robotanalyzer,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpR" = (
-/obj/structure/table/standard,
-/obj/machinery/cell_charger,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/obj/item/device/flash/synthetic,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpS" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/weapon/storage/firstaid/regular{
- empty = 1;
- name = "First-Aid (empty)"
- },
-/obj/item/device/healthanalyzer,
-/obj/item/device/healthanalyzer,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpT" = (
-/obj/machinery/recharge_station,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpU" = (
-/obj/machinery/cryopod/robot,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/computer/cryopod/robot{
- pixel_y = -30
- },
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpV" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/closet/wardrobe/robotics_black,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/assembly/robotics)
-"bpW" = (
-/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 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bpX" = (
-/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)
-"bpY" = (
-/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/machinery/status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bpZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bqa" = (
-/obj/machinery/station_map{
- dir = 4;
- pixel_x = -32
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bqb" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bqc" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bqd" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bqe" = (
-/obj/effect/floor_decal/corner/lime,
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/ringer_button{
- id = "medbay_ringer";
- pixel_x = 26;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bqf" = (
-/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)
-"bqg" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- id = "main_door";
- name = "Main Exit Door Control";
- pixel_x = -26;
- pixel_y = 0;
- req_access = null
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bqh" = (
-/obj/structure/toilet{
- icon_state = "toilet00";
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- id = "main_unit_2";
- name = "Door Bolt Control";
- pixel_x = 5;
- pixel_y = 25;
- req_access = null;
- specialfunctions = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bqi" = (
-/obj/effect/floor_decal/corner/lime,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bqj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12,25,66)
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"bqk" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bql" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bqm" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"bqn" = (
-/obj/effect/floor_decal/corner/beige/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bqo" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"bqp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bqq" = (
-/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/medbay)
-"bqr" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/device/piano{
- force_piano = 1;
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 9;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bqs" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 5
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bqt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bqu" = (
-/obj/structure/bed/chair/wood{
- icon_state = "wooden_chair";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bqv" = (
-/obj/machinery/firealarm/east,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bqw" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/ramp,
-/area/medical/medbay2)
-"bqx" = (
-/obj/structure/table/stone/marble,
-/obj/item/weapon/reagent_containers/glass/beaker,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/item/weapon/material/knife/butch,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bqy" = (
-/obj/structure/toilet{
- icon_state = "toilet00";
- dir = 8
- },
-/obj/machinery/button/remote/airlock{
- id = "main_unit_3";
- name = "Door Bolt Control";
- pixel_x = 5;
- pixel_y = 25;
- req_access = null;
- specialfunctions = 4
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bqz" = (
-/obj/structure/curtain/black,
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 1
- },
-/area/crew_quarters/bar)
-"bqA" = (
-/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";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bqB" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/floor_decal/spline/plain{
- dir = 8;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bqC" = (
-/obj/machinery/smartfridge/secure/medbay{
- density = 1;
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"bqD" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bqE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"bqF" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"bqG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bqH" = (
-/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)
-"bqI" = (
-/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)
-"bqJ" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bqK" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bqL" = (
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bqM" = (
-/obj/structure/table/wood,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Break Room";
- dir = 1;
- network = list("Command","Bunker")
- },
-/turf/simulated/floor/carpet,
-/area/bridge/minibar)
-"bqN" = (
-/obj/machinery/smartfridge/drinks,
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/bridge/minibar)
-"bqO" = (
-/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)
-"bqP" = (
-/obj/structure/closet,
-/obj/random/loot,
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bqQ" = (
-/turf/simulated/wall/r_wall,
-/area/server)
-"bqR" = (
-/obj/structure/sign/poster,
-/turf/simulated/wall,
-/area/assembly/robotics)
-"bqS" = (
-/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/assembly/robotics)
-"bqT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/sign/flag/nanotrasen/left,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bqU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/obj/structure/sign/flag/nanotrasen/right,
-/turf/simulated/floor/plating,
-/area/assembly/robotics)
-"bqV" = (
-/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/assembly/robotics)
-"bqW" = (
-/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 = "Robotics Lab";
- req_access = list(29)
- },
-/turf/simulated/floor/tiled/white,
-/area/assembly/robotics)
-"bqY" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atm{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bqZ" = (
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bra" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/sign/meeting_point{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"brb" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"brc" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"brd" = (
-/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)
-"bre" = (
-/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
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"brf" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"brg" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"brh" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bri" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/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/medbay)
-"brj" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"brk" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/effect/floor_decal/sign/gtr,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"brl" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"brm" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/effect/floor_decal/corner/beige/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"brn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"bro" = (
-/obj/effect/floor_decal/corner/beige/full,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"brp" = (
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - General Treatment 1";
- dir = 8;
- icon_state = "camera"
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"brq" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"brr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"brs" = (
-/obj/machinery/ringer{
- department = "Medbay";
- id = "medbay_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"brt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bru" = (
-/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)
-"brv" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 9;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"brw" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"brx" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bry" = (
-/turf/simulated/wall,
-/area/medical/gen_treatment)
-"brz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brC" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/spline/plain{
- dir = 10;
- icon_state = "spline_plain"
- },
-/obj/structure/flora/pottedplant/random{
- pixel_x = 16;
- pixel_y = 16
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"brD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brE" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/spline/plain{
- dir = 6;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"brF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/ringer{
- department = "Medbay";
- id = "medbay_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(5)
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brG" = (
-/obj/structure/curtain/black,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"brH" = (
-/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
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"brK" = (
-/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/white,
-/area/medical/medbay2)
-"brL" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Main Storage";
- req_access = list(66)
- },
-/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/white,
-/area/medical/main_storage)
-"brM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"brN" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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)
-"brO" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/machinery/door/window{
- base_state = "left";
- dir = 1;
- icon_state = "left";
- layer = 2.85;
- name = "MediExpress - Storage";
- req_access = list(66)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"brP" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/disposaloutlet{
- dir = 8;
- spread = 360;
- spread_point = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"brQ" = (
-/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
- },
-/turf/simulated/floor/plating,
-/area/bridge)
-"brR" = (
-/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_access = list(19)
- },
-/obj/machinery/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)
-"brS" = (
-/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
- },
-/turf/simulated/floor/plating,
-/area/bridge)
-"brT" = (
-/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)
-"brU" = (
-/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)
-"brV" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"brW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"brX" = (
-/obj/machinery/r_n_d/server/robotics,
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"brY" = (
-/obj/machinery/atmospherics/unary/vent_pump{
- dir = 4;
- icon_state = "map_vent_out";
- use_power = 1
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"brZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- icon_state = "intact";
- dir = 4
- },
-/turf/simulated/floor/bluegrid{
- base_icon = 'icons/turf/flooring/plating.dmi';
- icon = 'icons/turf/flooring/tiles.dmi';
- icon_state = "dark";
- name = "Server Walkway";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"bsa" = (
-/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{
- icon_state = "intact";
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/server)
-"bsb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- icon_state = "intact"
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"bsc" = (
-/obj/machinery/power/apc/high{
- dir = 1;
- name = "north bump";
- pixel_y = 24
- },
-/obj/machinery/camera/network/research{
- c_tag = "Research - Server Room"
- },
-/obj/machinery/portable_atmospherics/canister/nitrogen,
-/obj/machinery/atmospherics/portables_connector,
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"bsd" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 2;
- icon_state = "freezer_1";
- power_setting = 20;
- set_temperature = 80;
- use_power = 1
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"bse" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/item/weapon/packageWrap,
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsf" = (
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsg" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsh" = (
-/obj/machinery/status_display{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsi" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsj" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsk" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/machinery/computer/guestpass{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsl" = (
-/obj/machinery/atm{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsm" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsn" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bso" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/research)
-"bsp" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/obj/structure/sink{
- pixel_y = 16
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsq" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Entrance"
- },
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bsr" = (
-/obj/structure/closet/firecloset,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bss" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/device/radio/intercom{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bst" = (
-/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"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bsu" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/light,
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor";
- dir = 1
- },
-/obj/machinery/computer/HolodeckControl/Exodus{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bsv" = (
-/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)
-"bsw" = (
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 4
- },
-/area/crew_quarters/bar)
-"bsx" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bsy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bsz" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 8
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bsA" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bsB" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bsC" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"bsD" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bsE" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bsF" = (
-/obj/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)
-"bsG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"bsH" = (
-/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)
-"bsI" = (
-/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)
-"bsJ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"bsK" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/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/tiled/white,
-/area/medical/medbay)
-"bsL" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 10
- },
-/obj/machinery/computer/guestpass{
- pixel_x = -32
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bsM" = (
-/obj/effect/floor_decal/spline/fancy/wood,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bsN" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bsO" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bsP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bsQ" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1;
- icon_state = "door_closed";
- name = "Library"
- },
-/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,
-/area/library)
-"bsR" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/bar)
-"bsS" = (
-/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/white,
-/area/medical/medbay2)
-"bsT" = (
-/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/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- name = "CMO's Office";
- sortType = "CMO's Office"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bsU" = (
-/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/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- name = "Medical Bay";
- sortType = "Medical Bay"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bsV" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-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/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bsW" = (
-/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 = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bsX" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bsY" = (
-/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/white,
-/area/medical/medbay2)
-"bsZ" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bta" = (
-/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)
-"btb" = (
-/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/multi_tile/glass{
- dir = 2;
- icon_state = "door_closed";
- name = "Hydroponics";
- req_access = list(35)
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"btc" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"btd" = (
-/obj/effect/floor_decal/industrial/outline/grey,
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bte" = (
-/obj/effect/floor_decal/industrial/outline/grey,
-/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/white,
-/area/medical/medbay2)
-"btf" = (
-/obj/effect/floor_decal/sign/c2,
-/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/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"btg" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/weapon/storage/bible,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bth" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"bti" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"btj" = (
-/turf/simulated/wall,
-/area/medical/temp_morgue)
-"btk" = (
-/obj/structure/table/wood,
-/obj/machinery/light,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"btl" = (
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled,
-/area/bridge)
-"btm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"btn" = (
-/obj/machinery/alarm/server{
- dir = 4;
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/bluegrid{
- base_icon = 'icons/turf/flooring/plating.dmi';
- icon = 'icons/turf/flooring/tiles.dmi';
- icon_state = "dark";
- name = "Server Walkway";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"bto" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/bluegrid{
- base_icon = 'icons/turf/flooring/plating.dmi';
- icon = 'icons/turf/flooring/tiles.dmi';
- icon_state = "dark";
- name = "Server Walkway";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"btp" = (
-/turf/simulated/floor/bluegrid{
- base_icon = 'icons/turf/flooring/plating.dmi';
- icon = 'icons/turf/flooring/tiles.dmi';
- icon_state = "dark";
- name = "Server Walkway";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"btq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- dir = 8;
- name = "Server Room";
- opacity = 1;
- req_access = list(30)
- },
-/obj/machinery/door/window/eastleft{
- name = "Server Room"
- },
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"btr" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"bts" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"btt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"btu" = (
-/obj/machinery/door/airlock/command{
- name = "Server Room";
- req_access = list(30)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"btv" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btw" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btx" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bty" = (
-/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/rnd/research)
-"btz" = (
-/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/white,
-/area/rnd/research)
-"btA" = (
-/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/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btB" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btC" = (
-/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/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btD" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/door/airlock/research{
- name = "Research Division Access";
- req_access = list(47)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btE" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- id_tag = "researchdoor";
- name = "Research Division Access";
- req_access = list(47)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"btG" = (
-/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)
-"btH" = (
-/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{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central_one)
-"btI" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Holodeck"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"btJ" = (
-/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)
-"btL" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 8;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"btM" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/roller{
- pixel_y = 4
- },
-/obj/item/roller{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"btN" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"btO" = (
-/obj/structure/table/rack,
-/obj/random/arcade,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"btP" = (
-/obj/machinery/vending/medical{
- density = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"btQ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12,25,66)
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"btR" = (
-/obj/machinery/button/remote/blast_door{
- id = "GTRshutters";
- name = "General Treatment Shutters Control";
- pixel_x = 0;
- 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)
-"btS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = null;
- req_one_access = list(12,66)
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/bar)
-"btT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/masks{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/gloves,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"btU" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"btV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"btW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"btX" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"btY" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- icon_state = "door_open";
- id_tag = null;
- name = "General Treatment Room";
- req_access = list(66)
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"btZ" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bua" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bub" = (
-/turf/simulated/wall/r_wall,
-/area/medical/medbay2)
-"buc" = (
-/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)
-"bud" = (
-/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)
-"bue" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall/r_wall,
-/area/medical/medbay2)
-"buf" = (
-/obj/effect/floor_decal/corner/green/full,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bug" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"buh" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"bui" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"buj" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "Cloning Laboratory";
- req_access = list(66)
- },
-/obj/structure/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/genetics_cloning)
-"buk" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/medical/genetics_cloning)
-"bul" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bum" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bun" = (
-/obj/structure/sign/nosmoking_2{
- pixel_y = 32
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled,
-/area/bridge)
-"buo" = (
-/obj/structure/flora/pottedplant/random,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bup" = (
-/obj/machinery/r_n_d/server/core,
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"buq" = (
-/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;
- use_power = 1;
- pressure_checks = 2;
- pressure_checks_default = 2;
- pump_direction = 0
- },
-/turf/simulated/floor/bluegrid{
- name = "Server Base";
- nitrogen = 500;
- oxygen = 0;
- temperature = 80
- },
-/area/server)
-"bur" = (
-/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{
- icon_state = "intact";
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/server)
-"bus" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"but" = (
-/obj/machinery/computer/rdservercontrol,
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"buu" = (
-/obj/machinery/computer/message_monitor,
-/obj/structure/sign/nosmoking_1{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/dark,
-/area/server)
-"buv" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/paleblue/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bux" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buy" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light,
-/obj/machinery/camera/network/research{
- c_tag = "Research - Corridor Camera 3";
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buA" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buC" = (
-/obj/structure/disposalpipe/junction{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/noticeboard{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buF" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
- },
-/obj/machinery/shower{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buG" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buH" = (
-/obj/machinery/shower{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"buI" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Research Entrance";
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/sign/science{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"buJ" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central_one)
-"buK" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/alphadeck)
-"buL" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"buN" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"buO" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"buP" = (
-/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)
-"buQ" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"buR" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"buS" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- name = "EMT Quarters";
- req_access = list(67)
- },
-/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/dark,
-/area/medical/emt)
-"buT" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"buU" = (
-/obj/structure/closet/bombcloset,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"buV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"buW" = (
-/obj/effect/floor_decal/corner/grey{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/machinery/computer/guestpass{
- pixel_x = -28;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"buX" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"buY" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"buZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bva" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"bvb" = (
-/obj/machinery/body_scanconsole{
- dir = 4;
- icon_state = "body_scannerconsole"
- },
-/obj/effect/floor_decal/corner/beige/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bvc" = (
-/obj/machinery/bodyscanner{
- dir = 8;
- icon_state = "body_scanner_0"
- },
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bvd" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/structure/bed/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Gardener"
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bve" = (
-/turf/simulated/wall,
-/area/medical/surgeryobs)
-"bvf" = (
-/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)
-"bvg" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bvh" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/tiled,
-/area/medical/icu)
-"bvi" = (
-/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)
-"bvj" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bvk" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Telescience Test Chamber 01";
- dir = 4;
- network = list("Research")
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bvl" = (
-/obj/structure/table/wood,
-/obj/machinery/recharger,
-/turf/simulated/floor/wood,
-/area/library)
-"bvm" = (
-/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)
-"bvn" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/library)
-"bvo" = (
-/obj/effect/landmark/start{
- name = "Librarian"
- },
-/obj/structure/bed/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/library)
-"bvp" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bvq" = (
-/obj/effect/floor_decal/corner/lime/full,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"bvr" = (
-/obj/effect/floor_decal/corner/lime/full{
- dir = 4
- },
-/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/medical/medbay2)
-"bvs" = (
-/turf/simulated/open,
-/area/turbolift/medical_station)
-"bvt" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bvu" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bvv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bvw" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/sign/m,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bvx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Temporary Morgue";
- req_access = list(6)
- },
-/obj/structure/plasticflaps/airtight,
-/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/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bvy" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bvz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bvA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bvB" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bvC" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bvD" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"bvE" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"bvF" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/full,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bvG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bvH" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/rdoffice)
-"bvI" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bvJ" = (
-/obj/machinery/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)
-"bvK" = (
-/obj/structure/closet/medical_wall{
- pixel_x = 32
- },
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/ointment,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bvL" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/xenobiology/xenoflora)
-"bvM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Xenobotany Maintenance";
- req_access = list(55);
- req_one_access = null
- },
-/turf/simulated/floor/plating,
-/area/rnd/xenobiology/xenoflora)
-"bvN" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/lab)
-"bvO" = (
-/obj/machinery/door/airlock/research{
- name = "Research and Development";
- req_access = list(7)
- },
-/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/white,
-/area/rnd/lab)
-"bvP" = (
-/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)
-"bvQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/hallway/primary/central_one)
-"bvR" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 8;
- name = "Chapel";
- sortType = "Chapel"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bvS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- 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
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"bvW" = (
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"bvZ" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bwa" = (
-/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)
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/main)
-"bwb" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bwc" = (
-/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)
-"bwd" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bwe" = (
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bwf" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bwg" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bwh" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bwi" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bwj" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/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/surgeryobs)
-"bwk" = (
-/obj/structure/sink{
- pixel_y = 24
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bwl" = (
-/obj/structure/table/standard,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bwm" = (
-/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)
-"bwn" = (
-/obj/machinery/button/windowtint{
- id = "OR1";
- pixel_x = 0;
- pixel_y = 26;
- req_access = list(66)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/table/rack,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bwo" = (
-/obj/structure/table/standard,
-/obj/item/weapon/bonesetter,
-/obj/item/weapon/bonegel,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Operating Room 1";
- dir = 2
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bwp" = (
-/obj/structure/table/standard,
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/FixOVein,
-/obj/machinery/vending/wallmed2{
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bwq" = (
-/obj/structure/table/standard,
-/obj/item/weapon/retractor,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bwr" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bws" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bwt" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/closet/wardrobe/white,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Cloning Laboratory";
- dir = 4;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bwu" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bwv" = (
-/obj/structure/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
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bww" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/hologram/holopad,
-/obj/machinery/firealarm/east,
-/obj/machinery/light{
- dir = 4;
- status = 2
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bwx" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bwy" = (
-/obj/structure/closet/bombcloset,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bwz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"bwA" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bwB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bwC" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bwD" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bwE" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"bwF" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bwG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bwH" = (
-/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/research_port)
-"bwI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bwJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bwK" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/atmospherics/portables_connector,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bwL" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bwM" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/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)
-"bwN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/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)
-"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"
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bwP" = (
-/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)
-"bwQ" = (
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- 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)
-"bwR" = (
-/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)
-"bwS" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 0;
- 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)
-"bwT" = (
-/obj/machinery/door/airlock/command{
- id_tag = "researchdoor";
- name = "Research Director's Office";
- req_access = list(30)
- },
-/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)
-"bwU" = (
-/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/purple{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bwV" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bwW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bwX" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/rnd/xenobiology/xenoflora)
-"bwY" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bwZ" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bxa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bxb" = (
-/obj/structure/sign/nosmoking_1{
- pixel_y = 32
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/box/syringes,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bxc" = (
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bxd" = (
-/obj/structure/closet/secure_closet/hydroponics{
- req_access = list(47)
- },
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bxe" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bxf" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bxg" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bxh" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bxi" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 27
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bxj" = (
-/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/door/firedoor,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/obj/machinery/ringer_button{
- id = "sci_ringer";
- pixel_x = 5;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/rnd/lab)
-"bxk" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Camera 4"
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bxl" = (
-/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"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bxm" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bxn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bxp" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bxq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 1;
- is_critical = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"bxr" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/table/rack,
-/obj/item/weapon/rig/medical/equipped,
-/obj/machinery/door/window{
- dir = 8;
- name = "Rescue Hardsuit";
- req_access = list(67)
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"bxs" = (
-/turf/simulated/wall,
-/area/medical/emt)
-"bxt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"bxu" = (
-/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)
-"bxv" = (
-/obj/effect/floor_decal/corner/grey{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bxw" = (
-/turf/simulated/wall,
-/area/medical/medbay)
-"bxx" = (
-/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/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"bxy" = (
-/turf/simulated/wall,
-/area/medical/cryo)
-"bxz" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/bed/chair/comfy/teal{
- dir = 4;
- icon_state = "comfychair_preview"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bxA" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bxB" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bxC" = (
-/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)
-"bxD" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Hydroponics - West";
- dir = 1
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"bxE" = (
-/obj/structure/table/standard,
-/obj/item/weapon/cautery,
-/obj/item/weapon/hemostat,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bxF" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay2)
-"bxG" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/dna_scannernew,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bxH" = (
-/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/white,
-/area/medical/genetics_cloning)
-"bxI" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/computer/med_data,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bxJ" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bxK" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bxL" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"bxM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/bridge)
-"bxN" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bxO" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/flora/ausbushes/ppflowers,
-/turf/simulated/floor/grass,
-/area/bridge)
-"bxP" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "cooling_airlock";
- name = "exterior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_one_access = list(11)
- },
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1379;
- master_tag = "cooling_airlock";
- name = "exterior access button";
- pixel_x = 25;
- pixel_y = 25;
- req_one_access = list(11)
- },
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"bxQ" = (
-/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)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxR" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 4;
- frequency = 1379;
- id_tag = "cooling_pump"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
- id_tag = "cooling_airlock";
- layer = 3.3;
- pixel_x = 0;
- 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{
- frequency = 1379;
- id_tag = "cooling_sensor";
- layer = 3.3;
- master_tag = "cooling_airlock";
- pixel_x = 12;
- pixel_y = -25
- },
-/obj/effect/decal/warning_stripes,
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxS" = (
-/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)
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxT" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- layer = 3.3;
- master_tag = "cooling_airlock";
- name = "interior access button";
- pixel_x = -25;
- pixel_y = -25;
- req_access = list(11)
- },
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxU" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/binary/pump{
- dir = 8;
- use_power = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bxX" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bxY" = (
-/obj/machinery/door/window{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bxZ" = (
-/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/blue,
-/area/rnd/rdoffice)
-"bya" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"byb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"byc" = (
-/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)
-"byd" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stamp/rd{
- pixel_x = 3;
- pixel_y = -2
- },
-/obj/item/weapon/paper/monitorkey,
-/obj/item/device/megaphone,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bye" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"byf" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/light,
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"byg" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"byh" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/rnd/xenobiology/xenoflora)
-"byi" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"byj" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"byk" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"byl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bym" = (
-/obj/structure/closet/secure_closet/hydroponics{
- req_access = list(47)
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"byn" = (
-/obj/item/toy/figure/scientist,
-/obj/machinery/autolathe,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"byo" = (
-/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/white,
-/area/rnd/lab)
-"byp" = (
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"byq" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"byr" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bys" = (
-/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/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/rnd/lab)
-"byt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"byu" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"byv" = (
-/obj/machinery/computer/crew,
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"byw" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/status_display{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/item/device/radio/intercom{
- pixel_y = -26
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"byx" = (
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/grass,
-/area/hydroponics)
-"byz" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"byA" = (
-/obj/machinery/disposal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"byB" = (
-/turf/simulated/floor/tiled/ramp{
- icon_state = "ramptop";
- dir = 4
- },
-/area/hallway/primary/central_one)
-"byC" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/effect/floor_decal/sign/gtr,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"byD" = (
-/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/hydroponics)
-"byE" = (
-/obj/machinery/body_scanconsole{
- dir = 4;
- icon_state = "body_scannerconsole"
- },
-/obj/effect/floor_decal/corner/beige/full,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"byF" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/bed/chair/comfy/teal{
- dir = 4;
- icon_state = "comfychair_preview"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"byG" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/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/hydroponics)
-"byH" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"byI" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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/medical/surgeryobs)
-"byJ" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access = null;
- req_one_access = list(31,48)
- },
-/obj/structure/cable/green{
- d1 = 4;
- 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/quartermaster/lobby)
-"byK" = (
-/obj/effect/floor_decal/corner/green/full,
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- 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/hydroponics)
-"byL" = (
-/obj/effect/floor_decal/corner/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
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"byM" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/structure/bed/roller,
-/obj/machinery/ringer{
- department = "Medbay";
- id = "medbay_ringer";
- pixel_x = 30;
- pixel_y = 0;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"byN" = (
-/obj/effect/floor_decal/corner/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{
- icon_state = "intact-supply";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"byO" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"byP" = (
-/obj/structure/table/standard,
-/obj/item/weapon/scalpel,
-/obj/item/weapon/circular_saw{
- pixel_y = 8
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"byQ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay2)
-"byR" = (
-/obj/machinery/computer/cloning,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"byS" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"byT" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/closet,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"byU" = (
-/turf/simulated/wall,
-/area/medical/genetics_cloning)
-"byV" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"byW" = (
-/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/medbay)
-"byX" = (
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"byY" = (
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"byZ" = (
-/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/medbay)
-"bza" = (
-/obj/machinery/camera/network/command{
- c_tag = "Bridge - Lift Lobby";
- dir = 4
- },
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bzb" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bzc" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- 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
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bzd" = (
-/obj/effect/floor_decal/corner/paleblue/full{
- icon_state = "corner_white_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
- },
-/turf/simulated/floor/tiled,
-/area/bridge)
-"bze" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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/bridge)
-"bzf" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bzg" = (
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bzh" = (
-/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/research_port)
-"bzi" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bzj" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/device/eftpos{
- eftpos_name = "Research EFTPOS scanner"
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bzk" = (
-/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/blue,
-/area/rnd/rdoffice)
-"bzl" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 9
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bzm" = (
-/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{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bzn" = (
-/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)
-"bzo" = (
-/obj/structure/bed/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/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)
-"bzp" = (
-/obj/item/modular_computer/console/preset/research,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bzq" = (
-/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)
-"bzr" = (
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bzs" = (
-/obj/machinery/vending/hydronutrients{
- categories = 3
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bzt" = (
-/obj/machinery/biogenerator,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bzu" = (
-/obj/structure/closet/crate/hydroponics/prespawned,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bzv" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/ringer{
- department = "R&D Laboratory";
- id = "sci_ringer";
- pixel_x = -30;
- req_access = list(7)
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/stack/material/glass{
- amount = 50;
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bzw" = (
-/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/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bzx" = (
-/obj/structure/table/standard,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bzy" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bzz" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/item/stack/material/steel{
- amount = 50;
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/stack/material/glass{
- amount = 50;
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bzA" = (
-/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;
- dir = 1;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/rnd/lab)
-"bzB" = (
-/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)
-"bzC" = (
-/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)
-"bzD" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "EMT Garage Access";
- req_access = list(67)
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"bzF" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bzG" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Telescience"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bzH" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bzI" = (
-/obj/effect/floor_decal/corner/green/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bzJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/ramp,
-/area/crew_quarters/sleep/main)
-"bzK" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/vending/medical{
- density = 0;
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"bzL" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- req_access = list(35)
- },
-/turf/simulated/floor/plating,
-/area/hydroponics)
-"bzM" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bzN" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bzO" = (
-/obj/machinery/telepad,
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bzP" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/bed/chair/comfy/teal{
- dir = 4;
- icon_state = "comfychair_preview"
- },
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bzQ" = (
-/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/central_one)
-"bzR" = (
-/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)
-"bzS" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"bzT" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bzU" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bzV" = (
-/obj/structure/bed/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)
-"bzW" = (
-/obj/machinery/computer/operating,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bzX" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/simulated/floor/wood,
-/area/library)
-"bzY" = (
-/obj/structure/sink/kitchen{
- dir = 8;
- icon_state = "sink_alt";
- name = "Surgical sink";
- pixel_x = 20
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bzZ" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bAa" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/clonepod,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bAb" = (
-/obj/structure/bed/roller,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bAc" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bAd" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/closet,
-/obj/machinery/newscaster{
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/genetics_cloning)
-"bAe" = (
-/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/medbay)
-"bAf" = (
-/obj/machinery/light/small/emergency,
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bAg" = (
-/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/maintcentral)
-"bAh" = (
-/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)
-"bAi" = (
-/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)
-"bAj" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/obj/machinery/camera/network/research{
- c_tag = "Research - Research Director's Office";
- dir = 4;
- network = list("Research")
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bAk" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/item/weapon/folder/purple,
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bAl" = (
-/obj/structure/bed/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/blue,
-/area/rnd/rdoffice)
-"bAm" = (
-/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/lamarr,
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bAn" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 9
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bAo" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bAp" = (
-/obj/machinery/computer/robotics,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bAq" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bAr" = (
-/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/white,
-/area/rnd/research)
-"bAs" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Corridor Camera 2";
- dir = 8;
- network = list("Research")
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bAt" = (
-/obj/machinery/seed_storage/xenobotany,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atmospherics/pipe/simple/visible/red,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAu" = (
-/obj/machinery/seed_extractor,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAv" = (
-/obj/machinery/smartfridge,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAw" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/botany/editor,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAx" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/machinery/r_n_d/destructive_analyzer,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bAy" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/firealarm/east,
-/obj/machinery/botany/extractor,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAz" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- pixel_x = -27
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAA" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bAC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- dir = 8;
- id = "emtshutter";
- name = "EMT Garage Door"
- },
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"bAD" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Aft Corridor - Camera 3";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bAE" = (
-/obj/machinery/mech_recharger,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"bAF" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bAH" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bAI" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/junction/yjunction{
- icon_state = "pipe-y";
- dir = 1
- },
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bAJ" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bAK" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bAL" = (
-/obj/effect/landmark/start{
- name = "Librarian"
- },
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/carpet,
-/area/library)
-"bAM" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8;
- icon_state = "freezer"
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bAN" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- layer = 3.3;
- master_tag = "brig_solar_inner";
- name = "interior access button";
- pixel_x = -25;
- pixel_y = -25;
- req_access = list(13)
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bAO" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Pre-Op 1";
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bAP" = (
-/obj/machinery/bookbinder,
-/turf/simulated/floor/wood,
-/area/library)
-"bAQ" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 8;
- icon_state = "freezer"
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bAR" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bAS" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bAT" = (
-/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{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bAU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/library)
-"bAV" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Cold Storage";
- req_access = list(66)
- },
-/obj/structure/plasticflaps/airtight,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bAW" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Research Division Maintenance";
- req_access = list(47);
- req_one_access = null
- },
-/turf/simulated/floor/plating,
-/area/rnd/telesci)
-"bAX" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced,
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "telescience";
- name = "Containment Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/rnd/telesci)
-"bAY" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "telescience";
- name = "Containment Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/northleft,
-/obj/machinery/door/window/southright,
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bAZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"bBa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bBb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bBc" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/carpet,
-/area/library)
-"bBd" = (
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bBe" = (
-/obj/structure/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)
-"bBf" = (
-/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)
-"bBg" = (
-/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)
-"bBh" = (
-/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)
-"bBi" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bBj" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bBk" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/skills{
- icon_state = "medlaptop"
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bBl" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bBm" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 9
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bBn" = (
-/obj/effect/floor_decal/corner/purple{
- dir = 9
- },
-/obj/effect/floor_decal/corner/purple{
- dir = 6
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/effect/floor_decal/corner/grey,
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bBo" = (
-/obj/machinery/computer/mecha,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bBp" = (
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bBq" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bBr" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/simulated/floor/carpet,
-/area/library)
-"bBs" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bBt" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve/full,
-/obj/structure/reagent_dispensers/acid{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/item/weapon/folder/purple,
-/obj/item/weapon/stock_parts/manipulator,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bBu" = (
-/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{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bBv" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bBw" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bBx" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/cell_charger,
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bBy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bBz" = (
-/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/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bBA" = (
-/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,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bBB" = (
-/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{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bBC" = (
-/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)
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bBE" = (
-/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)
-"bBF" = (
-/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{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bBG" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bBH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/library)
-"bBI" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/iv_drip,
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bBJ" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bBK" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bBL" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-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";
- dir = 2
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bBM" = (
-/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)
-"bBN" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/pill_bottle/dice/gaming,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/simulated/floor/carpet,
-/area/library)
-"bBO" = (
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bBP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bBQ" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1379;
- 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{
- frequency = 1379;
- 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/asteroid/ash/rocky,
-/area/maintenance/medbay)
-"bBR" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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)
-"bBS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bBT" = (
-/obj/structure/table/wood,
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/wood,
-/area/library)
-"bBU" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Telescience Test Chamber 02";
- dir = 4;
- network = list("Research")
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bBV" = (
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bBW" = (
-/obj/structure/bookcase/libraryspawn/adult,
-/turf/simulated/floor/wood,
-/area/library)
-"bBY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bBZ" = (
-/obj/structure/bookcase/libraryspawn/fiction,
-/turf/simulated/floor/carpet,
-/area/library)
-"bCa" = (
-/obj/random/junk,
-/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/plating,
-/area/maintenance/medbay)
-"bCb" = (
-/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)
-"bCc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/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)
-"bCd" = (
-/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/research_port)
-"bCe" = (
-/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)
-"bCf" = (
-/turf/simulated/floor/carpet/blue,
-/area/rnd/rdoffice)
-"bCg" = (
-/obj/structure/table/rack,
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/item/clothing/glasses/welding/superior,
-/obj/item/weapon/cartridge/signal/science{
- pixel_x = -4;
- pixel_y = 2
- },
-/obj/item/weapon/cartridge/signal/science,
-/obj/item/weapon/cartridge/signal/science,
-/obj/item/weapon/rig/hazmat/equipped,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bCh" = (
-/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)
-"bCi" = (
-/obj/structure/table/standard,
-/obj/item/device/taperecorder{
- pixel_x = -3
- },
-/obj/item/device/paicard{
- pixel_x = 4
- },
-/obj/item/device/radio/intercom{
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/item/weapon/circuitboard/teleporter,
-/obj/item/weapon/circuitboard/aicore{
- pixel_x = -2;
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bCj" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/requests_console{
- name = "Research Director RC";
- pixel_x = -2;
- pixel_y = -30;
- department = "Research Director's Desk";
- departmentType = 5;
- announcementConsole = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bCk" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/closet/secure_closet/RD,
-/turf/simulated/floor/tiled/white,
-/area/rnd/rdoffice)
-"bCl" = (
-/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)
-"bCm" = (
-/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/white,
-/area/rnd/research)
-"bCn" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bCo" = (
-/obj/structure/bookcase/libraryspawn/religion,
-/turf/simulated/floor/carpet,
-/area/library)
-"bCp" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- icon_state = "intact";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bCq" = (
-/obj/machinery/atmospherics/pipe/simple/visible/red{
- icon_state = "intact";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bCr" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bCs" = (
-/obj/structure/table/wood,
-/obj/item/weapon/deck/cards,
-/obj/item/weapon/deck/holder,
-/obj/item/weapon/deck/tarot,
-/turf/simulated/floor/carpet,
-/area/library)
-"bCt" = (
-/obj/structure/table/stone/marble,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/microwave{
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bCu" = (
-/obj/machinery/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/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bCv" = (
-/obj/machinery/r_n_d/protolathe,
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bCw" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bCx" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bCy" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 4
- },
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'BOMB RANGE";
- name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING";
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bCz" = (
-/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"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bCA" = (
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/obj/machinery/vending/battlemonsters,
-/turf/simulated/floor/wood,
-/area/library)
-"bCB" = (
-/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)
-"bCC" = (
-/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)
-"bCD" = (
-/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)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bCE" = (
-/obj/structure/table/stone/marble,
-/obj/machinery/appliance/mixer/cereal{
- pixel_y = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bCF" = (
-/obj/machinery/chem_master/condimaster,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bCG" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bCH" = (
-/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
- },
-/obj/effect/floor_decal/corner/lime/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bCJ" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bCK" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green,
-/obj/effect/floor_decal/corner/lime/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bCL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bCM" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/masks{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/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 = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bCN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bCO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bCP" = (
-/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)
-"bCQ" = (
-/obj/machinery/alarm/cold{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/structure/closet/secure_closet/medical2,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"bCR" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bCS" = (
-/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)
-"bCT" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bCU" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bCV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bCW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/library)
-"bCX" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bCY" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bCZ" = (
-/turf/simulated/wall,
-/area/crew_quarters/sleep/research)
-"bDa" = (
-/obj/machinery/door/airlock{
- name = "Adult Section"
- },
-/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)
-"bDb" = (
-/obj/machinery/door/airlock/command{
- id_tag = "rdmdoor";
- name = "Research Director's Meeting Room";
- req_access = list(30)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/rdoffice)
-"bDc" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/carpet,
-/area/library)
-"bDd" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bDe" = (
-/obj/machinery/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,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bDf" = (
-/obj/structure/grille,
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/rnd/xenobiology/xenoflora)
-"bDg" = (
-/obj/machinery/atmospherics/portables_connector,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bDh" = (
-/obj/machinery/atmospherics/unary/freezer{
- dir = 2;
- icon_state = "freezer"
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bDi" = (
-/obj/machinery/atmospherics/unary/heater{
- dir = 2;
- icon_state = "heater"
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bDj" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1;
- name = "To Waste"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bDk" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bDl" = (
-/obj/structure/closet/crate/freezer,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bDm" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Research & Development";
- dir = 4;
- network = list("Research")
- },
-/obj/machinery/computer/rdconsole/core,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bDn" = (
-/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/machinery/light,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bDo" = (
-/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/r_n_d/circuit_imprinter,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/simulated/floor/tiled/dark,
-/area/rnd/lab)
-"bDp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/mauve/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bDq" = (
-/obj/structure/table/standard,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/lab)
-"bDr" = (
-/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;
- dir = 1;
- icon_state = "pdoor0";
- id = "Biohazard";
- name = "Biohazard Shutter";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/rnd/lab)
-"bDs" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/obj/effect/floor_decal/corner/mauve/full,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bDt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bDu" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bDv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bDw" = (
-/obj/structure/bookcase/libraryspawn/nonfiction,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/carpet,
-/area/library)
-"bDx" = (
-/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)
-"bDy" = (
-/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{
- icon_state = "ramptop";
- dir = 4
- },
-/area/hallway/primary/central_one)
-"bDz" = (
-/obj/structure/plasticflaps/airtight,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/freezer_maint{
- req_access = list(28)
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/kitchen)
-"bDA" = (
-/obj/structure/bookcase/libraryspawn/nonfiction,
-/turf/simulated/floor/carpet,
-/area/library)
-"bDB" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/iv_drip,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bDC" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bDD" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bDE" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bDF" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Combined Operating Theatre";
- req_access = list(45)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bDH" = (
-/obj/structure/bookcase/libraryspawn/reference,
-/turf/simulated/floor/carpet,
-/area/library)
-"bDI" = (
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bDJ" = (
-/obj/machinery/photocopier,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/library)
-"bDK" = (
-/turf/simulated/wall,
-/area/maintenance/substation/medical)
-"bDL" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/radio/intercom{
- pixel_y = -26
- },
-/turf/simulated/floor/wood,
-/area/library)
-"bDM" = (
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bDN" = (
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bDO" = (
-/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,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bDP" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/reinforced,
-/area/rnd/telesci)
-"bDQ" = (
-/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/plating,
-/area/maintenance/medbay)
-"bDR" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bDS" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bDT" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bDU" = (
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bDV" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bDW" = (
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bDX" = (
-/obj/effect/floor_decal/corner/mauve,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bDY" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Break Room"
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bDZ" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEa" = (
-/obj/structure/sink{
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEb" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEc" = (
-/obj/machinery/vending/snack,
-/obj/machinery/status_display{
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEd" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/research)
-"bEe" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/corner/mauve/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bEf" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bEg" = (
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bEh" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bEi" = (
-/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{
- name = "Maintenance Access";
- req_access = null;
- req_one_access = list(12,66)
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bEj" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bEk" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bEl" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12,37,66)
- },
-/turf/simulated/floor/plating,
-/area/library)
-"bEm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bEn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bEo" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bEp" = (
-/obj/item/weapon/bedsheet/clown,
-/obj/structure/bed,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bEq" = (
-/turf/simulated/wall,
-/area/chapel/main)
-"bEr" = (
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bEs" = (
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/obj/effect/landmark/costume/imperium_monk,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bEt" = (
-/obj/structure/crematorium{
- _wifi_id = "chapel_crema"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/office)
-"bEu" = (
-/obj/machinery/button/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)
-"bEv" = (
-/obj/structure/morgue{
- icon_state = "morgue1";
- dir = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/office)
-"bEw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bEx" = (
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/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)
-"bEy" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 8
- },
-/area/chapel/main)
-"bEz" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bEA" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bEB" = (
-/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/medbay)
-"bEC" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bED" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bEE" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -25
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bEF" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bEG" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bEH" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/heads/cmo)
-"bEI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bEJ" = (
-/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{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bEK" = (
-/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/chapel/main)
-"bEL" = (
-/obj/random/junk,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bEM" = (
-/obj/item/weapon/bedsheet/mime,
-/obj/structure/bed,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bEN" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Medical Main Substation Bypass"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"bEO" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bEP" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bEQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bER" = (
-/obj/turbolift_map_holder/aurora/command,
-/turf/simulated/floor/plating,
-/area/turbolift/command_sub)
-"bES" = (
-/obj/machinery/vending/cigarette,
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bET" = (
-/obj/effect/landmark/start{
- name = "Xenobiologist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEU" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEV" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Geneticist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEW" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Lab Assistant"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEX" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Lab Assistant"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEY" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bEZ" = (
-/obj/item/device/radio/intercom{
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bFa" = (
-/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/machinery/door/airlock/glass_research{
- name = "Genetics Laboratory";
- req_access = list(47)
- },
-/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/white,
-/area/rnd/research)
-"bFc" = (
-/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)
-"bFd" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bFe" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/table/standard,
-/obj/item/weapon/disk/botany,
-/obj/item/weapon/disk/botany,
-/obj/item/weapon/disk/botany,
-/obj/item/weapon/disk/botany,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bFf" = (
-/obj/machinery/atmospherics/binary/pump,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bFg" = (
-/obj/machinery/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/primary/central_one)
-"bFh" = (
-/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)
-"bFi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bFj" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bFk" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 5
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bFl" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bFm" = (
-/obj/structure/bed/chair/wood{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bFn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bFo" = (
-/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/chapel/main)
-"bFp" = (
-/obj/machinery/button/windowtint{
- id = "chapel";
- pixel_x = -6;
- pixel_y = 28
- },
-/obj/structure/table/wood,
-/obj/item/weapon/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/weapon/pen,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"bFq" = (
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bFr" = (
-/obj/machinery/door/airlock/glass{
- name = "Holodeck"
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/hallway/primary/central_one)
-"bFs" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/hallway/primary/central_one)
-"bFt" = (
-/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)
-"bFu" = (
-/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)
-"bFv" = (
-/turf/simulated/wall,
-/area/library)
-"bFw" = (
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bFx" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 4
- },
-/obj/structure/table/wood,
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bFy" = (
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bFz" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bFA" = (
-/obj/effect/landmark/costume/chicken,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bFB" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/vending/dinnerware,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bFC" = (
-/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)
-"bFD" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/closet/secure_closet/personal/patient,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bFE" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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{
- icon_state = "intact-supply";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bFF" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bFG" = (
-/obj/item/weapon/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{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/device/multitool,
-/obj/machinery/computer/guestpass{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bFH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 2;
- name = "Library";
- sortType = "Library"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bFI" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bFJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bFK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bFL" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bFM" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
- },
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"bFN" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/item/weapon/nullrod/itembox,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"bFO" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bFP" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bFQ" = (
-/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)
-"bFR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bFS" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bFT" = (
-/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)
-"bFU" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bFV" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bFW" = (
-/obj/machinery/papershredder,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bFX" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bFY" = (
-/obj/structure/table/standard,
-/obj/item/weapon/folder/purple,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bFZ" = (
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/item/weapon/folder/purple,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bGa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Research Director"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bGb" = (
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bGc" = (
-/obj/machinery/camera/network/research{
- c_tag = "Research - Corridor Camera 1"
- },
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bGd" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/door/window/eastright{
- dir = 1;
- icon_state = "right";
- name = "Controlled Environment Zone";
- req_access = list(55)
- },
-/obj/machinery/door/window/eastright{
- dir = 2;
- icon_state = "right";
- name = "Controlled Environment Zone";
- req_access = list(55)
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bGe" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bGf" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold4w/visible,
-/obj/machinery/meter,
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bGg" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bGh" = (
-/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)
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGi" = (
-/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)
-"bGj" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bGk" = (
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bGl" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "barshutters01";
- name = "Bar Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/matches,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bGm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bGn" = (
-/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
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bGo" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Camera 1";
- dir = 4
- },
-/obj/machinery/computer/guestpass{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bGp" = (
-/obj/structure/sign/directions/evac{
- dir = 8;
- icon_state = "direction_evac";
- pixel_x = 0;
- pixel_y = 36
- },
-/obj/structure/sign/directions/cryo{
- dir = 8;
- icon_state = "direction_cryo";
- pixel_y = 28
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bGq" = (
-/obj/structure/sign/directions/engineering{
- dir = 8;
- icon_state = "direction_eng";
- pixel_x = 0;
- pixel_y = 40
- },
-/obj/structure/sign/directions/science{
- dir = 8;
- icon_state = "direction_sci";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/sign/directions/civ{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bGr" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/sign/directions/security{
- dir = 4;
- icon_state = "direction_sec";
- pixel_y = 32
- },
-/obj/structure/sign/directions/medical{
- dir = 4;
- icon_state = "direction_med";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/sign/directions/com{
- dir = 4;
- icon_state = "direction_com";
- pixel_y = 40
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bGs" = (
-/obj/machinery/door/airlock/glass,
-/obj/machinery/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/primary/aft)
-"bGt" = (
-/obj/effect/landmark/costume/commie,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bGu" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 1;
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"bGv" = (
-/obj/item/modular_computer/console/preset/civilian,
-/turf/simulated/floor/carpet,
-/area/chapel/office)
-"bGw" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGx" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGy" = (
-/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)
-"bGz" = (
-/obj/machinery/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
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bGA" = (
-/obj/effect/landmark/costume/elpresidente,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bGB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 2;
- name = "Chapel Office";
- sortType = "Chapel Office"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bGC" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Chaplain Office's Maintenance";
- req_one_access = list(22)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/chapel/office)
-"bGD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGE" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGF" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGH" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bGI" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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/surgeryobs)
-"bGJ" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"bGK" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 6;
- icon_state = "spline_plain"
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/carpet,
-/area/chapel/main)
-"bGL" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bGM" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bGN" = (
-/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)
-"bGO" = (
-/obj/machinery/button/windowtint{
- id = "OR2";
- pixel_x = 0;
- pixel_y = -26;
- req_access = list(66)
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bGP" = (
-/obj/machinery/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/primary/aft)
-"bGQ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/scalpel,
-/obj/item/weapon/circular_saw{
- pixel_y = 8
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bGR" = (
-/obj/structure/closet/wardrobe/chaplain_black,
-/obj/item/weapon/storage/fancy/crayons,
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bGS" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bGT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bGU" = (
-/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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bGV" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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/maintcentral)
-"bGW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bGX" = (
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bGY" = (
-/obj/machinery/vending/coffee,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bGZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/effect/landmark/start{
- name = "Xenobiologist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHa" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/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/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHb" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve,
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHc" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/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/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHd" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/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/mauve{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve,
-/obj/effect/landmark/start{
- name = "Scientist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHe" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve,
-/obj/effect/landmark/start{
- name = "Geneticist"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHf" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHg" = (
-/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";
- sortType = "Research"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bHh" = (
-/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)
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/sleep/research)
-"bHi" = (
-/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/research)
-"bHj" = (
-/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{
- icon_state = "pipe-y";
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bHk" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 5
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bHl" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 4
- },
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bHm" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/light,
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bHn" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/portable_atmospherics/hydroponics,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/turf/simulated/floor/tiled{
- icon_state = "vault";
- dir = 5
- },
-/area/rnd/xenobiology/xenoflora)
-"bHo" = (
-/obj/effect/floor_decal/corner/green/full,
-/obj/structure/table/standard,
-/obj/machinery/reagentgrinder,
-/turf/simulated/floor/tiled/white,
-/area/rnd/xenobiology/xenoflora)
-"bHp" = (
-/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{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bHq" = (
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bHr" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bHs" = (
-/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/primary/aft)
-"bHt" = (
-/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)
-"bHu" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 1
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 2
- },
-/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{
- icon_state = "rampbot";
- dir = 8
- },
-/area/chapel/main)
-"bHv" = (
-/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/chapel/main)
-"bHw" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bHx" = (
-/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)
-"bHy" = (
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bHz" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bHA" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"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"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bHC" = (
-/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)
-"bHD" = (
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bHE" = (
-/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)
-"bHF" = (
-/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/tiled/dark,
-/area/chapel/main)
-"bHG" = (
-/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
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bHH" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bHI" = (
-/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";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bHJ" = (
-/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)
-"bHK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bHL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bHM" = (
-/obj/structure/curtain/black,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bHN" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bHO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = null;
- req_one_access = list(12,66)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bHP" = (
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Port 3";
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/medical/medbay)
-"bHQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bHR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bHS" = (
-/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{
- name = "Maintenance Access";
- req_access = null;
- req_one_access = list(12,66)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/main)
-"bHT" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/surgeryprep)
-"bHU" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Pre/Post-OP";
- req_access = list(66)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"bHV" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/main)
-"bHW" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bHX" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bHY" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/stamp/cmo,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bHZ" = (
-/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)
-"bIa" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/obj/item/weapon/wrench,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bIb" = (
-/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)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/turf/simulated/floor/tiled/white,
-/area/medical/cryo)
-"bIc" = (
-/obj/machinery/light{
- dir = 4;
- status = 2
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bId" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/item/weapon/storage/fancy/vials,
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bIe" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bIf" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bIg" = (
-/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/medbay)
-"bIh" = (
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bIi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bIj" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bIk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIm" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIn" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIo" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIp" = (
-/obj/structure/noticeboard{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIq" = (
-/obj/machinery/light,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIr" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/structure/sign/drop{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/research)
-"bIs" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/effect/floor_decal/corner/mauve/full,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bIt" = (
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled/white,
-/area/rnd/research)
-"bIu" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/misc_lab)
-"bIv" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"bIw" = (
-/obj/machinery/light,
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bIx" = (
-/obj/structure/curtain/black,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bIy" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bIz" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bIA" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bIB" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bIC" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/closet/emcloset,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bID" = (
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hydroponics)
-"bIE" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"bIF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/ramp{
- icon_state = "ramptop";
- dir = 1
- },
-/area/maintenance/bar)
-"bIG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/maintenance/bar)
-"bIH" = (
-/obj/effect/landmark{
- name = "JoinLateCryo"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"bII" = (
-/turf/simulated/floor/tiled/ramp/bottom,
-/area/maintenance/bar)
-"bIJ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/reagent_containers/food/drinks/shaker,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/book/manual/barman_recipes,
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bIK" = (
-/turf/simulated/floor/tiled/dark,
-/area/hydroponics)
-"bIL" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"bIM" = (
-/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)
-"bIN" = (
-/obj/machinery/firealarm/east,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"bIO" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 4
- },
-/area/maintenance/bar)
-"bIP" = (
-/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{
- icon_state = "rampbot";
- dir = 4
- },
-/area/maintenance/bar)
-"bIQ" = (
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_y = 6
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"bIR" = (
-/obj/structure/table/standard,
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Surgery Emergency Phone";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/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.";
- name = "Surgery Cleaner"
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bIS" = (
-/obj/structure/table/standard,
-/obj/item/weapon/bonesetter,
-/obj/item/weapon/bonegel,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Operating Room 2";
- dir = 1
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bIT" = (
-/obj/structure/table/standard,
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/FixOVein,
-/obj/machinery/vending/wallmed2{
- pixel_x = 0;
- pixel_y = -28
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bIU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/retractor,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"bIV" = (
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 8
- },
-/area/maintenance/bar)
-"bIW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/red,
-/obj/machinery/meter{
- name = "Scrubbers"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bIX" = (
-/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"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bIY" = (
-/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);
- req_one_access = null
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/sleep/research)
-"bIZ" = (
-/turf/simulated/wall/r_wall,
-/area/crew_quarters/sleep/research)
-"bJa" = (
-/turf/simulated/wall/r_wall,
-/area/rnd/telesci)
-"bJb" = (
-/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)
-"bJc" = (
-/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/research{
- name = "Miscellaneous Research Room";
- req_one_access = list(7,29)
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bJd" = (
-/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)
-"bJe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bJf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bJh" = (
-/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)
-"bJi" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- 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"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bJj" = (
-/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)
-"bJk" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bJl" = (
-/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)
-"bJm" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Aft Corridor - Camera 1";
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bJn" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/machinery/autolathe,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bJo" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bJp" = (
-/obj/machinery/door/airlock/engineering{
- name = "Civilian (Main Level) Substation";
- req_one_access = list(11,24)
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/maintenance/substation/civilian_west)
-"bJq" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bJr" = (
-/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_access = null;
- req_one_access = list(31,48)
- },
-/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)
-"bJs" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Equipment Storage";
- req_access = list(31)
- },
-/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)
-"bJt" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/weapon/packageWrap,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bJu" = (
-/turf/simulated/wall,
-/area/crew_quarters/locker/locker_toilet)
-"bJv" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/glass_mining{
- name = "Break Room";
- req_access = null;
- req_one_access = list(31,48)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"bJw" = (
-/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)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"bJx" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Maintenance";
- req_access = list(31)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"bJy" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"bJz" = (
-/obj/structure/weightlifter,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/obj/machinery/firealarm/west,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"bJA" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"bJB" = (
-/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{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"bJC" = (
-/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)
-"bJD" = (
-/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)
-"bJE" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bJF" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bJG" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bJH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bJI" = (
-/obj/machinery/computer/guestpass{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bJJ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/bar)
-"bJK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bJL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bJM" = (
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bJN" = (
-/obj/effect/decal/cleanable/generic,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bJO" = (
-/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)
-"bJP" = (
-/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)
-"bJQ" = (
-/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/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bJR" = (
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bJS" = (
-/turf/simulated/open,
-/area/turbolift/research_station)
-"bJT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/firealarm/south,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/bar)
-"bJU" = (
-/obj/structure/closet/secure_closet/freezer/meat,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bJV" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bJW" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/library)
-"bJX" = (
-/obj/machinery/gibber,
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bJY" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bJZ" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -28
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/aft)
-"bKa" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/ringer{
- department = "Kitchen";
- id = "kitchen_ringer";
- pixel_x = 0;
- pixel_y = -30;
- req_access = list(28)
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/kitchen)
-"bKb" = (
-/obj/effect/floor_decal/spline/plain{
- icon_state = "spline_plain";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/bar)
-"bKc" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bKd" = (
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bKe" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 10;
- icon_state = "spline_plain"
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bKf" = (
-/obj/effect/floor_decal/spline/plain,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bKg" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bKh" = (
-/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/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bKi" = (
-/obj/effect/floor_decal/spline/fancy/wood,
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bKj" = (
-/obj/structure/table/wood,
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bKk" = (
-/obj/machinery/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/primary/aft)
-"bKl" = (
-/obj/structure/table/wood,
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bKm" = (
-/obj/machinery/door/airlock/glass,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bKn" = (
-/obj/structure/table/wood,
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Bar - Booths";
- dir = 1
- },
-/obj/item/weapon/flame/candle,
-/turf/simulated/floor/carpet,
-/area/crew_quarters/bar)
-"bKo" = (
-/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{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "cargo_cockblock";
- name = "Cargo";
- opacity = 1
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bKp" = (
-/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/quartermaster/lobby)
-"bKq" = (
-/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{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "cargo_cockblock";
- name = "Cargo";
- opacity = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"bKr" = (
-/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/quartermaster/lobby)
-"bKs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/blast/shutters{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "cargo_cockblock";
- name = "Cargo";
- opacity = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"bKt" = (
-/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{
- density = 1;
- dir = 4;
- icon_state = "shutter1";
- id = "cargo_cockblock";
- name = "Cargo";
- opacity = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"bKu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/firedoor{
- enable_smart_generation = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bKv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bKw" = (
-/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)
-"bKx" = (
-/obj/machinery/icecream_vat,
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/crew_quarters/kitchen)
-"bKy" = (
-/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{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bKz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock{
- name = "Chapel"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bKA" = (
-/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/aft)
-"bKB" = (
-/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/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bKC" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bKD" = (
-/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/dark,
-/area/chapel/main)
-"bKE" = (
-/obj/machinery/disposal,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bKF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bKG" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled/dark,
-/area/chapel/main)
-"bKH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bKI" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bKK" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bKL" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bKM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bKN" = (
-/obj/structure/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/plating,
-/area/maintenance/maintcentral)
-"bKO" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bKR" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bLs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bLt" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bLu" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/bed/chair/wheelchair,
-/obj/item/weapon/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bLv" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bLw" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bLx" = (
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bLy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bLD" = (
-/turf/simulated/floor/tiled/white,
-/area/rnd/telesci)
-"bLU" = (
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bMk" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMl" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintance";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMm" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/cable,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMn" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMo" = (
-/obj/item/weapon/extinguisher,
-/obj/item/weapon/extinguisher{
- pixel_x = 8
- },
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMp" = (
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMq" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMr" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMs" = (
-/obj/machinery/door/airlock/maintenance{
- req_access = list(19)
- },
-/obj/structure/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/maintenance/maintcentral)
-"bMt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/research_port)
-"bMD" = (
-/turf/simulated/wall,
-/area/chapel/office)
-"bMM" = (
-/obj/structure/closet/hydrant{
- pixel_x = -32
- },
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMN" = (
-/obj/machinery/space_heater,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMO" = (
-/obj/structure/closet/secure_closet/personal/patient,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMP" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bMR" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMS" = (
-/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb2,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bMT" = (
-/obj/effect/decal/warning_stripes,
-/obj/structure/ladder/up{
- pixel_y = 16
- },
-/turf/simulated/floor/plating{
- roof_type = null
- },
-/area/maintenance/maintcentral)
-"bMU" = (
-/obj/structure/closet,
-/obj/item/clothing/head/ushanka,
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/turf/simulated/floor/plating,
-/area/maintenance/maintcentral)
-"bMV" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/extinguisher,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/glasses/meson,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bMW" = (
-/obj/machinery/space_heater,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bNr" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/item/clothing/suit/fire/firefighter,
-/obj/item/weapon/tank/oxygen,
-/obj/item/clothing/mask/gas,
-/obj/item/weapon/extinguisher,
-/obj/item/clothing/head/hardhat/red,
-/obj/item/clothing/glasses/meson,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNs" = (
-/obj/structure/closet,
-/obj/item/clothing/head/ushanka,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNt" = (
-/obj/item/device/t_scanner,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNu" = (
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNv" = (
-/obj/structure/curtain/medical,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bNw" = (
-/obj/structure/window/reinforced/tinted{
- dir = 1
- },
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNx" = (
-/obj/structure/curtain/medical,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bNA" = (
-/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/maintcentral)
-"bNB" = (
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- icon_state = "up-supply";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- icon_state = "up-scrubbers";
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "12-0"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating{
- roof_type = null
- },
-/area/maintenance/maintcentral)
-"bNC" = (
-/obj/structure/closet,
-/obj/item/clothing/head/ushanka,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bND" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bNE" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Firefighting equipment";
- req_access = list(12)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bNO" = (
-/obj/structure/sign/directions/evac{
- dir = 1;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 4
- },
-/obj/structure/sign/directions/medical{
- dir = 1;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = -4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bNW" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bNX" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"bNY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bNZ" = (
-/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/effect/decal/cleanable/generic,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bOe" = (
-/obj/item/device/t_scanner,
-/obj/structure/table/steel,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bOf" = (
-/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)
-"bOg" = (
-/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)
-"bOx" = (
-/obj/item/device/radio/intercom{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bOO" = (
-/obj/structure/window/reinforced/tinted,
-/obj/structure/window/reinforced/tinted{
- dir = 8;
- icon_state = "twindow"
- },
-/obj/structure/window/reinforced/tinted{
- dir = 4;
- icon_state = "twindow"
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"bOY" = (
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bOZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/chapel/office)
-"bPj" = (
-/obj/random/toolbox,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPk" = (
-/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)
-"bPl" = (
-/obj/structure/table/standard,
-/obj/item/clothing/ears/earmuffs{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bPm" = (
-/obj/structure/table/standard,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bPn" = (
-/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)
-"bPo" = (
-/obj/item/weapon/wrench,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPp" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/obj/effect/decal/cleanable/liquid_fuel,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPI" = (
-/turf/simulated/wall,
-/area/crew_quarters/kitchen)
-"bPK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bPL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bPQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-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/bar)
-"bPT" = (
-/obj/item/stack/tile/floor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bPU" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bPV" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQd" = (
-/obj/machinery/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)
-"bQp" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bQs" = (
-/obj/effect/decal/cleanable/generic,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQt" = (
-/obj/random/junk,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQu" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/loot,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQv" = (
-/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)
-"bQw" = (
-/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/decal/cleanable/liquid_fuel,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bQE" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bQO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"bQS" = (
-/obj/structure/table/reinforced/steel,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQT" = (
-/obj/structure/table/reinforced/steel,
-/obj/item/stack/tile/floor,
-/obj/random/toolbox,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bQU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bQV" = (
-/obj/structure/table/reinforced/steel,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bQW" = (
-/obj/structure/girder,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bRh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bRi" = (
-/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)
-"bRx" = (
-/obj/structure/barricade,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bRy" = (
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bRz" = (
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bRB" = (
-/obj/item/stack/tile/floor,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bRC" = (
-/obj/structure/grille,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bRD" = (
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bRE" = (
-/obj/item/stack/tile/floor,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bRF" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/obj/random/junk,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bRG" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bRH" = (
-/obj/structure/barricade,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bRI" = (
-/obj/machinery/door/airlock/maintenance,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bRJ" = (
-/turf/simulated/wall,
-/area/maintenance/cargo)
-"bRL" = (
-/turf/simulated/wall,
-/area/hydroponics)
-"bRU" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bSv" = (
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bSw" = (
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bSx" = (
-/turf/simulated/wall,
-/area/maintenance/bar)
-"bSz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/random/junk,
-/turf/simulated/floor/tiled/white,
-/area/maintenance/research_port)
-"bSA" = (
-/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)
-"bSB" = (
-/obj/structure/target_stake,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bSC" = (
-/obj/structure/target_stake,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bSD" = (
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bSI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"bSU" = (
-/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)
-"bSV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bTj" = (
-/turf/simulated/floor/carpet,
-/area/maintenance/bar)
-"bTl" = (
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bTI" = (
-/obj/effect/landmark/costume/pirate,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bUj" = (
-/obj/effect/landmark/costume/gladiator,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bUk" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bUl" = (
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bUm" = (
-/obj/random/junk,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bUn" = (
-/obj/structure/table/rack,
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bUz" = (
-/turf/simulated/wall,
-/area/crew_quarters/bar)
-"bUB" = (
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bUE" = (
-/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)
-"bVa" = (
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bVg" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/carpet,
-/area/maintenance/bar)
-"bVD" = (
-/obj/effect/landmark/costume/plaguedoctor,
-/obj/structure/table/rack,
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"bVF" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/tiled,
-/area/maintenance/research_port)
-"bVO" = (
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/bar)
-"bVP" = (
-/turf/simulated/floor/tiled/ramp/bottom{
- icon_state = "rampbot";
- dir = 4
- },
-/area/crew_quarters/bar)
-"bVQ" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "barshutters01";
- name = "Bar Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/glass/rag,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"bVT" = (
-/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)
-"bVV" = (
-/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/cargo)
-"bWd" = (
-/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/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bWh" = (
-/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)
-"bWj" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bWm" = (
-/turf/simulated/wall,
-/area/quartermaster/lobby)
-"bWF" = (
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bWG" = (
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bWH" = (
-/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)
-"bWI" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/item/stack/material/steel{
- amount = 50
- },
-/obj/item/stack/material/glass{
- amount = 50;
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bWK" = (
-/obj/structure/table/wood,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bWR" = (
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bWS" = (
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"bWT" = (
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bWU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bWV" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bWW" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bWY" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXa" = (
-/obj/item/modular_computer/console/preset/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXd" = (
-/obj/item/modular_computer/console/preset/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXg" = (
-/obj/structure/bed/chair/wood{
- icon_state = "wooden_chair";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bXn" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXo" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXp" = (
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXq" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXs" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXt" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXu" = (
-/obj/effect/floor_decal/corner/brown,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXw" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bXM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"bXO" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/button/remote/blast_door{
- id = "cargo_cockblock";
- name = "Cargo Shutters Control";
- pixel_x = 0;
- pixel_y = 0;
- req_access = list(31)
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXQ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXR" = (
-/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/tiled,
-/area/quartermaster/lobby)
-"bXS" = (
-/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/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bXT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"bXV" = (
-/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{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bXW" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-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)
-"bYa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bYh" = (
-/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";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bYi" = (
-/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)
-"bYj" = (
-/turf/simulated/wall,
-/area/maintenance/substation/civilian_west)
-"bYk" = (
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bYo" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bYr" = (
-/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/quartermaster/lobby)
-"bYs" = (
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bYt" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bYu" = (
-/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)
-"bYD" = (
-/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/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"bYG" = (
-/obj/machinery/power/breakerbox/activated{
- RCon_tag = "Civilian Main Substation Bypass"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bYH" = (
-/obj/turbolift_map_holder/aurora/cargo,
-/turf/simulated/floor/tiled/dark,
-/area/turbolift/cargo_station)
-"bYL" = (
-/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{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bYM" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bYN" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bYO" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"bYU" = (
-/obj/machinery/power/terminal{
- dir = 4
- },
-/obj/structure/cable,
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Civilian - Civilian Substation";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bYV" = (
-/obj/machinery/power/smes/buildable{
- charge = 0;
- RCon_tag = "Substation - Civilian Main"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bYW" = (
-/obj/item/weapon/storage/belt/utility,
-/obj/structure/table/standard{
- name = "plastic table frame"
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- name = "Cargo Requests Console";
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/item/weapon/tape_roll,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bYX" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bZb" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- pixel_y = -26
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bZn" = (
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bZo" = (
-/obj/machinery/power/sensor{
- name = "Powernet Sensor - Civilian (Main Level)";
- name_tag = "Civilian (Main Level) Subgrid"
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/structure/cable/green,
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bZp" = (
-/obj/machinery/newscaster{
- pixel_x = -27;
- pixel_y = 1
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/obj/structure/table/standard{
- name = "plastic table frame"
- },
-/obj/effect/floor_decal/corner/brown/full,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bZq" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bZz" = (
-/obj/structure/closet,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"bZA" = (
-/turf/simulated/wall,
-/area/quartermaster/storage)
-"bZB" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/engineering{
- name = "Civilian (Main Level) Substation";
- req_one_access = list(11,24)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/civilian_west)
-"bZC" = (
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"bZD" = (
-/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)
-"bZG" = (
-/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)
-"bZV" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"bZW" = (
-/obj/structure/closet/crate,
-/obj/effect/decal/cleanable/cobweb,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"bZX" = (
-/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)
-"bZY" = (
-/obj/machinery/ringer{
- department = "Cargo";
- id = "cargo_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(31)
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"bZZ" = (
-/obj/machinery/camera/network/supply{
- c_tag = "Warehouse - North"
- },
-/obj/structure/disposalpipe/tagger{
- dir = 2;
- name = "Sorting Office";
- no_override = 1;
- sort_tag = "Sorting Office"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/storage)
-"caa" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/status_display/supply_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cab" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cac" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/firealarm/west,
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/item/device/destTagger,
-/obj/item/weapon/pen,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/wrapping_paper,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cae" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/conveyor_switch/oneway{
- id = "cargo_toup"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"caf" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cag" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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)
-"cam" = (
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"can" = (
-/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/quartermaster/storage)
-"cao" = (
-/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)
-"cap" = (
-/obj/effect/decal/cleanable/dirt,
-/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)
-"caq" = (
-/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{
- icon_state = "warningcorner";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"car" = (
-/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/storage)
-"cas" = (
-/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/lobby)
-"caw" = (
-/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{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cax" = (
-/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)
-"caE" = (
-/turf/simulated/floor/tiled,
-/area/maintenance/bar)
-"caF" = (
-/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)
-"caG" = (
-/obj/structure/closet/crate,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"caH" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"caI" = (
-/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)
-"caJ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"caK" = (
-/obj/machinery/button/remote/blast_door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access = list(31)
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"caL" = (
-/obj/machinery/button/remote/blast_door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -24;
- pixel_y = 0;
- req_access = list(31)
- },
-/obj/effect/floor_decal/corner/brown/full,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"caN" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"caW" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- 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)
-"caY" = (
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"caZ" = (
-/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)
-"cba" = (
-/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)
-"cbb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cbd" = (
-/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)
-"cbe" = (
-/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)
-"cbg" = (
-/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;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbh" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbj" = (
-/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)
-"cbp" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/plastic,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cbq" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cbs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cbt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cbv" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cbw" = (
-/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{
- icon_state = "pipe-y";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cbx" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cby" = (
-/obj/structure/bed/chair,
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"cbz" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbA" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm/north,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbB" = (
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal/deliveryChute,
-/turf/simulated/floor/plating,
-/area/quartermaster/mail_room)
-"cbC" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall,
-/area/quartermaster/mail_room)
-"cbD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"cbE" = (
-/turf/simulated/wall/r_wall,
-/area/maintenance/disposal)
-"cbF" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"cbG" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"cbH" = (
-/obj/structure/closet,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"cbJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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/cargo)
-"cbK" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cbL" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cbM" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cbN" = (
-/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)
-"cbO" = (
-/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)
-"cbQ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/donkpockets,
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"cbR" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"cbS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/break_room)
-"cbT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cbY" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "mail_chute"
- },
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/quartermaster/mail_room)
-"ccc" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"ccf" = (
-/turf/simulated/open,
-/area/maintenance/disposal)
-"cci" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ccj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate/freezer,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cck" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ccn" = (
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"cco" = (
-/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)
-"ccq" = (
-/obj/structure/table/standard,
-/obj/item/weapon/deck/cards,
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"ccr" = (
-/obj/structure/table/standard,
-/obj/item/trash/tray,
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"ccs" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/table/rack,
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cct" = (
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"ccv" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "mail_chute"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/mail_room)
-"ccw" = (
-/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)
-"ccz" = (
-/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/dark,
-/area/maintenance/disposal)
-"ccB" = (
-/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{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"ccD" = (
-/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)
-"ccF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/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)
-"ccG" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ccH" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/status_display/supply_display{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/camera/network/supply{
- c_tag = "Cargo - Break Room";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"ccI" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"ccJ" = (
-/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)
-"ccL" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/effect/landmark/start{
- name = "Shaft Miner"
- },
-/turf/simulated/floor/carpet,
-/area/quartermaster/break_room)
-"ccN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"ccS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/mail_room)
-"ccT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"ccV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"ccX" = (
-/obj/machinery/light/small/emergency,
-/obj/structure/closet/crate,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"cda" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdb" = (
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cdc" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/camera/network/supply{
- c_tag = "Cargo - Main Warehouse";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"cdd" = (
-/obj/effect/floor_decal/corner/brown/full,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cde" = (
-/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{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cdh" = (
-/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/dark,
-/area/maintenance/disposal)
-"cdj" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdk" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Warehouse Maintenance";
- req_access = list(31)
- },
-/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/maintenance/cargo)
-"cdl" = (
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdm" = (
-/obj/structure/punching_bag,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cdn" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/alarm{
- dir = 1;
- pixel_y = -25
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cdo" = (
-/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)
-"cdq" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cdr" = (
-/obj/machinery/vending/snack,
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cds" = (
-/obj/structure/table/standard,
-/obj/machinery/microwave{
- pixel_y = 6
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"cdt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"cdw" = (
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdx" = (
-/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)
-"cdy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/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)
-"cdz" = (
-/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{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdG" = (
-/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)
-"cdH" = (
-/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)
-"cdI" = (
-/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)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"cdJ" = (
-/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{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cdK" = (
-/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{
- icon_state = "corner_white";
- 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;
- icon_state = "pipe-j1s";
- name = "Mining";
- sortType = "Mining"
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cdL" = (
-/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{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cdM" = (
-/obj/machinery/door/airlock/maintenance{
- req_one_access = list(12,54)
- },
-/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)
-"cdN" = (
-/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)
-"cdO" = (
-/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)
-"cdP" = (
-/turf/simulated/wall,
-/area/outpost/mining_main/eva)
-"cdQ" = (
-/turf/simulated/wall,
-/area/outpost/mining_main/refinery)
-"cdS" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cdT" = (
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cdV" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cdW" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cdX" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"cdY" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 8
- },
-/obj/machinery/mineral/stacking_unit_console{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cea" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceb" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cec" = (
-/obj/machinery/portable_atmospherics/canister/air/airlock,
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/light{
- dir = 4;
- status = 0
- },
-/obj/machinery/firealarm/east,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ced" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cee" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cef" = (
-/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)
-"ceg" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cei" = (
-/obj/machinery/mineral/stacking_machine,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cej" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cel" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ceq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cer" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"cet" = (
-/obj/effect/floor_decal/corner/brown/full,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- icon_state = "map_scrubber_on";
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceu" = (
-/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)
-"cey" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "mining_internal"
- },
-/obj/machinery/mineral/output,
-/obj/machinery/door/firedoor,
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cez" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ceE" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceF" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/window/southleft,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceG" = (
-/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,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceH" = (
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceI" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ceJ" = (
-/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)
-"ceK" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/mineral/equipment_vendor,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceL" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/machinery/mineral/equipment_vendor,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceM" = (
-/obj/machinery/recharge_station,
-/obj/machinery/firealarm/west,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"ceN" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/hoist_kit,
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/item/weapon/ladder_mobile,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceP" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"ceQ" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceS" = (
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceT" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/camera/network/mining{
- c_tag = "Mining - Production Room";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ceX" = (
-/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{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"ceY" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1379;
- id_tag = "mining_east_pump"
- },
-/obj/structure/sign/vacuum{
- pixel_y = 32
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ceZ" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1379;
- id_tag = "mining_east_pump"
- },
-/obj/structure/closet/walllocker/emerglocker/north,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfa" = (
-/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{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfb" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_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)
-"cfc" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfe" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cff" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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/outpost/mining_main/eva)
-"cfg" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"cfh" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"cfi" = (
-/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)
-"cfj" = (
-/obj/structure/grille,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cfk" = (
-/obj/machinery/mineral/processing_unit,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cfl" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"cfm" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfn" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfo" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/machinery/door/airlock/external{
- frequency = 1379;
- icon_state = "door_locked";
- id_tag = "mining_east_inner";
- locked = 1;
- name = "Mining External Access"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfp" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1379;
- master_tag = "mining_east_airlock";
- name = "interior access button";
- pixel_x = -27;
- pixel_y = 26
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 1;
- icon_state = "map"
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9;
- icon_state = "intact"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfs" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cft" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfu" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfv" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfy" = (
-/obj/machinery/mineral/input,
-/obj/machinery/conveyor{
- dir = 1;
- id = "mining_internal"
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cfz" = (
-/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{
- dir = 2
- },
-/obj/structure/sign/drop,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfA" = (
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- tag_airpump = "mining_east_pump";
- tag_exterior_door = "mining_east_outer";
- frequency = 1379;
- id_tag = "mining_east_airlock";
- tag_interior_door = "mining_east_inner";
- pixel_x = 0;
- pixel_y = -25;
- tag_chamber_sensor = "mining_east_sensor"
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1379;
- id_tag = "mining_east_pump"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfB" = (
-/obj/machinery/airlock_sensor{
- frequency = 1379;
- id_tag = "mining_east_sensor";
- master_tag = "mining_east_airlock";
- pixel_x = 0;
- pixel_y = -25
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1379;
- id_tag = "mining_east_pump"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfC" = (
-/obj/effect/floor_decal/corner/brown/full,
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/obj/machinery/meter,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfD" = (
-/obj/machinery/atmospherics/binary/pump/on{
- dir = 8;
- name = "Distro to Canisters";
- target_pressure = 150
- },
-/obj/effect/floor_decal/industrial/warning/cee{
- icon_state = "warningcee";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfE" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- icon_state = "warningcee";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/universal{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfF" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfG" = (
-/obj/effect/floor_decal/corner/brown,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfH" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/noticeboard{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfK" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfL" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfN" = (
-/obj/machinery/mech_recharger,
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cfO" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfP" = (
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfR" = (
-/obj/structure/table/standard,
-/obj/item/device/suit_cooling_unit/improved,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfT" = (
-/obj/effect/floor_decal/corner/brown,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cfW" = (
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/item/weapon/cell/high{
- charge = 100;
- maxcharge = 15000
- },
-/obj/structure/table/reinforced/steel,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"cfX" = (
-/obj/structure/ladder{
- pixel_y = 16
- },
-/turf/simulated/open/airless,
-/area/outpost/mining_main/eva)
-"cfY" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/camera/network/mining{
- c_tag = "Mining - Suit Storage";
- dir = 4
- },
-/obj/machinery/firealarm/west,
-/obj/machinery/mineral/rigpress,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cfZ" = (
-/obj/machinery/door/window/northleft,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cga" = (
-/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)
-"cgb" = (
-/obj/structure/table/rack,
-/obj/item/clothing/mask/breath,
-/obj/item/stack/flag/purple,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- 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)
-"cgc" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/papershredder,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cge" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgf" = (
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"cgg" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cgh" = (
-/obj/structure/table/rack,
-/obj/item/clothing/mask/breath,
-/obj/item/stack/flag/red,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"cgi" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgj" = (
-/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)
-"cgk" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgm" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/requests_console{
- department = "Mining";
- departmentType = 2;
- name = "Mining Requests Console";
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgn" = (
-/obj/machinery/mineral/unloading_machine,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cgp" = (
-/obj/structure/dispenser/oxygen,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cgq" = (
-/obj/structure/table/rack,
-/obj/item/clothing/mask/breath,
-/obj/item/stack/flag/green,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- 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)
-"cgr" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/item/weapon/pen/red,
-/obj/item/weapon/pen/blue,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgs" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgu" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgv" = (
-/obj/machinery/suit_cycler/mining,
-/obj/effect/floor_decal/corner/brown/full,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cgw" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cgx" = (
-/obj/structure/table/rack,
-/obj/item/clothing/mask/breath,
-/obj/item/stack/flag/yellow,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- 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)
-"cgy" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"cgz" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/item/weapon/packageWrap,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgA" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/item/weapon/hand_labeler,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cgB" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"cgC" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cgD" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"cgE" = (
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/skipjack_station/cavern)
-"cgF" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/vacantoffice2)
-"cgG" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/machinery/light{
- dir = 1;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/security/investigations)
-"cgH" = (
-/obj/effect/floor_decal/industrial/outline/grey,
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/security/investigations)
-"cgI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/security/investigations)
-"cgJ" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/investigations)
-"cgK" = (
-/obj/structure/noticeboard{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cgL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 30;
- pixel_y = 0
- },
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cgN" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/machinery/button/windowtint{
- id = "iaa";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/effect/landmark/start{
- name = "Internal Affairs Agent"
- },
-/turf/simulated/floor/carpet,
-/area/lawoffice)
-"cgT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering Hallway";
- req_one_access = null
- },
-/turf/simulated/floor/tiled,
-/area/engineering/foyer)
-"cgY" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"chg" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/light_switch{
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"chs" = (
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"cht" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"chu" = (
-/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;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"chw" = (
-/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 = "Psy"
- },
-/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)
-"chB" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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/power/apc{
- dir = 1;
- is_critical = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"chC" = (
-/obj/structure/cable/green{
- d1 = 4;
- 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/engineering{
- name = "Medbay Substation";
- req_one_access = list(11,24,5)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"chE" = (
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
- icon_state = "up-scrubbers";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/supply{
- icon_state = "up-supply";
- dir = 8
- },
-/obj/structure/cable/green{
- icon_state = "12-0"
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/up,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"chF" = (
-/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 = "Psy"
- },
-/turf/simulated/floor/plating,
-/area/rnd/rdoffice)
-"chG" = (
-/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 = "Psy"
- },
-/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)
-"chM" = (
-/obj/structure/table/standard,
-/obj/item/weapon/cautery,
-/obj/item/weapon/hemostat,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"chP" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"chQ" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/medical,
-/obj/effect/decal/cleanable/dirt,
-/obj/random/loot,
-/turf/simulated/floor/tiled,
-/area/maintenance/medbay)
-"chR" = (
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"chS" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"chV" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Starboard Corridor - Camera 1"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"chW" = (
-/obj/machinery/bodyscanner{
- dir = 8;
- icon_state = "body_scanner_0"
- },
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"chX" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"chY" = (
-/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{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cia" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cib" = (
-/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)
-"cic" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"cie" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "cargo_toup"
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"cih" = (
-/obj/machinery/conveyor{
- dir = 9;
- icon_state = "conveyor0";
- id = "cargo_toup";
- reversed = 1
- },
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"cii" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cik" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall,
-/area/maintenance/substation/civilian_west)
-"cil" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/quartermaster/lobby)
-"cim" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "cargo_toup"
- },
-/obj/structure/plasticflaps,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/quartermaster/lobby)
-"cip" = (
-/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{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"ciq" = (
-/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)
-"cir" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- 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)
-"cit" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"civ" = (
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"ciz" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light_switch{
- pixel_x = 32
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ciA" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/effect/floor_decal/corner/red/diagonal,
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"ciB" = (
-/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{
- icon_state = "corner_white";
- 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)
-"ciC" = (
-/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)
-"ciE" = (
-/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)
-"ciF" = (
-/obj/effect/floor_decal/corner/red/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/break_room)
-"ciH" = (
-/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,
-/area/quartermaster/storage)
-"ciI" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ciJ" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ciK" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/structure/table/standard,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ciL" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/storage)
-"ciM" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"ciN" = (
-/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"
- },
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 4;
- name = "Cargo";
- sortType = "Cargo"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"ciP" = (
-/obj/structure/track{
- icon_state = "track6"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"ciT" = (
-/obj/structure/track{
- icon_state = "track12"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"ciV" = (
-/obj/structure/track{
- icon_state = "track10"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"ciW" = (
-/obj/machinery/door/airlock/maintenance_hatch{
- name = "Mining Processing Hatch";
- req_access = list(48)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ciY" = (
-/obj/structure/track{
- icon_state = "track3"
- },
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"cjf" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "mining_internal"
- },
-/obj/machinery/mineral/output,
-/obj/machinery/door/firedoor,
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjg" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "mining_internal"
- },
-/obj/machinery/mineral/input,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjh" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "mining_internal"
- },
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjl" = (
-/obj/structure/track{
- icon_state = "track4"
- },
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"cjn" = (
-/obj/structure/track{
- icon_state = "track12"
- },
-/turf/simulated/floor/asteroid/ash/rocky,
-/area/mine/unexplored)
-"cju" = (
-/obj/vehicle/train/cargo/trolley/mining,
-/obj/structure/track{
- icon_state = "track12"
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"cjw" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cjx" = (
-/obj/machinery/mineral/stacking_unit_console{
- pixel_y = -32
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 8
- },
-/obj/structure/closet/crate,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cjy" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjH" = (
-/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_access = list(48)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cjK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cjN" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cjP" = (
-/obj/machinery/mineral/input,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"cjQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"cjT" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cke" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ckf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ckn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"cko" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ckp" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ckq" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ckw" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"ckx" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cky" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/brown,
-/obj/item/device/destTagger,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ckz" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/camera/network/mining{
- c_tag = "Mining - Office";
- dir = 1
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ckA" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"ckB" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"ckH" = (
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/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)
-"ckI" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"ckP" = (
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"clu" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- icon_state = "warning_dust";
- dir = 8
- },
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"clv" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/machinery/door/firedoor{
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/eva)
-"clw" = (
-/obj/machinery/cell_charger,
-/obj/structure/table/reinforced/steel,
-/turf/simulated/floor/airless{
- icon_state = "asteroidplating"
- },
-/area/outpost/mining_main/eva)
-"clz" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access = list(63)
- },
-/turf/simulated/floor/plating,
-/area/security/vacantoffice2)
-"clA" = (
-/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)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"clB" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation Monitoring";
- req_access = list(1)
- },
-/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)
-"clC" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"clD" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access = list(63)
- },
-/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/tiled,
-/area/security/brig)
-"clL" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = list(1)
- },
-/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)
-"clM" = (
-/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{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cmq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/status_display{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cmy" = (
-/obj/effect/floor_decal/corner/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)
-"cmz" = (
-/obj/effect/floor_decal/corner/blue/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"cmA" = (
-/obj/structure/closet/secure_closet/security_cadet,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"cmB" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 5
- },
-/obj/structure/mirror{
- pixel_x = -32
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"cmC" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"cmD" = (
-/obj/structure/table/rack,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/item/weapon/towel,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"cmE" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/main)
-"cmH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/main)
-"cmI" = (
-/obj/machinery/door/airlock/security{
- name = "Showers";
- req_access = list(63)
- },
-/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)
-"cmJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera/network/security{
- c_tag = "Security - Corridor Camera 2";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cnE" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"cnI" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/item/device/radio/intercom{
- pixel_y = -27
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cnO" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/door/airlock/glass_security{
- name = "Training & Investigations";
- req_access = list(63)
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cnP" = (
-/obj/machinery/door/firedoor,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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 & Investigations";
- req_access = list(63)
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cnQ" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/floor_decal/corner/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)
-"cnR" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 10
- },
-/obj/machinery/door/window/brigdoor{
- dir = 2;
- icon_state = "leftsecure";
- name = "Secure Holding Cell";
- req_access = list(2)
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"cnS" = (
-/obj/structure/closet/secure_closet/captains,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/crew_quarters/captain)
-"cnT" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access = list(63)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/security/brig)
-"cnU" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd_ammo,
-/obj/item/weapon/rcd,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/door/window/brigdoor/southright{
- req_access = list(56)
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/heads/chief)
-"cnV" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = -6;
- pixel_y = 10
- },
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 5;
- pixel_y = -30
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/heads/hos)
-"cnW" = (
-/obj/structure/closet/secure_closet/engineering_chief,
-/obj/item/weapon/tank/emergency_oxygen/engi,
-/obj/item/device/gps/engineering,
-/obj/item/weapon/pipewrench,
-/obj/item/weapon/grenade/chem_grenade/large/phoroncleaner,
-/turf/simulated/floor/wood,
-/area/crew_quarters/heads/chief)
-"cnX" = (
-/obj/machinery/door/airlock{
- id_tag = "visitdoor";
- name = "Visitation Area";
- req_access = list(1)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/lobby)
-"cnY" = (
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access = list(26)
- },
-/turf/simulated/floor/tiled,
-/area/janitor)
-"cnZ" = (
-/obj/machinery/camera/network/service{
- c_tag = "Janitor - Garage";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/janitor)
-"coa" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access = list(26)
- },
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"cob" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/box/lights/mixed{
- pixel_x = 4;
- pixel_y = -4
- },
-/obj/item/weapon/storage/box/lights/mixed{
- pixel_x = 2;
- pixel_y = -2
- },
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/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/dark,
-/area/janitor)
-"cod" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/belt/medical,
-/obj/item/clothing/accessory/stethoscope,
-/obj/item/clothing/glasses/hud/health,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"coe" = (
-/obj/structure/table/rack,
-/obj/item/weapon/paper_bin{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/paper_bin{
- pixel_x = -6;
- pixel_y = 6
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"cog" = (
-/obj/structure/table/steel,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"coh" = (
-/obj/structure/table/standard,
-/obj/machinery/vending/wallmed2{
- pixel_x = 28
- },
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/o2,
-/obj/machinery/light{
- dir = 4;
- status = 2
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"coi" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/adv{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/fire,
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"coD" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"cql" = (
-/obj/machinery/firealarm/north,
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/red{
- pixel_x = 2;
- pixel_y = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqm" = (
-/obj/item/modular_computer/console/preset/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/ringer{
- department = "Cargo";
- id = "cargo_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(31)
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqo" = (
-/obj/item/modular_computer/console/preset/supply,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqq" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqs" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqt" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqz" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"cqA" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"cqL" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cqO" = (
-/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)
-"cqZ" = (
-/obj/structure/table/steel,
-/obj/item/weapon/screwdriver{
- pixel_y = 16
- },
-/obj/item/weapon/crowbar,
-/obj/item/weapon/wrench,
-/turf/simulated/floor/tiled/dark,
-/area/janitor)
-"cra" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/main)
-"crb" = (
-/obj/structure/table/standard,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/item/device/radio,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crc" = (
-/obj/structure/table/standard,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/crowbar,
-/obj/item/weapon/crowbar,
-/obj/machinery/recharger/wallcharger{
- pixel_y = 22
- },
-/obj/machinery/recharger/wallcharger{
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crd" = (
-/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/structure/reagent_dispensers/peppertank{
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/main)
-"cre" = (
-/obj/machinery/vending/security,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crg" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crh" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Equipment Storage";
- req_access = list(1)
- },
-/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)
-"cri" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crj" = (
-/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)
-"crk" = (
-/obj/item/device/radio/intercom{
- pixel_x = 32
- },
-/obj/machinery/camera/network/security{
- c_tag = "Security - Equipment Storage";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crl" = (
-/obj/machinery/door/airlock{
- name = "Unit 1"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crm" = (
-/obj/machinery/door/airlock{
- name = "Unit 2"
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/cable/green,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/main)
-"cro" = (
-/obj/structure/table/standard,
-/obj/item/weapon/hand_labeler,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crp" = (
-/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)
-"crq" = (
-/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/main)
-"crr" = (
-/obj/machinery/disposal,
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/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)
-"crs" = (
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crt" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"cru" = (
-/obj/structure/window/reinforced,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crv" = (
-/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)
-"crw" = (
-/obj/effect/floor_decal/corner/blue/full{
- icon_state = "corner_white_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)
-"crx" = (
-/obj/effect/floor_decal/corner/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)
-"cry" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"crz" = (
-/obj/machinery/door/airlock/security{
- name = "Shower";
- req_access = list(1)
- },
-/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)
-"crA" = (
-/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)
-"crB" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crD" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"crE" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"crF" = (
-/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{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"crG" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 5
- },
-/obj/structure/mirror{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crI" = (
-/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)
-"crJ" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"crK" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"crL" = (
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crM" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crN" = (
-/obj/machinery/shower{
- dir = 8;
- icon_state = "shower";
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/door/window/westleft,
-/obj/structure/curtain/open/shower,
-/obj/item/weapon/soap,
-/turf/simulated/floor/tiled/freezer,
-/area/security/main)
-"crO" = (
-/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/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/door/firedoor/multi_tile,
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"crP" = (
-/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/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/main)
-"crR" = (
-/obj/structure/flora/pottedplant/random,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crS" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crT" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crW" = (
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crX" = (
-/obj/effect/floor_decal/corner/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)
-"crY" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"crZ" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access = list(63)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csa" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"csb" = (
-/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)
-"csc" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/floor_decal/corner/blue/full{
- icon_state = "corner_white_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)
-"csd" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"cse" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/weapon/folder/sec,
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csf" = (
-/obj/structure/bed/chair/office/dark,
-/obj/effect/floor_decal/corner/blue/full{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csg" = (
-/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)
-"csh" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csj" = (
-/obj/structure/coatrack,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csl" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced,
-/obj/item/weapon/paper_bin,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csm" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/item/weapon/folder/sec,
-/obj/item/weapon/pen,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csn" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/item/device/radio/phone,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"cso" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced,
-/obj/item/weapon/paper_bin,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csq" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"cst" = (
-/obj/structure/bed/chair,
-/obj/item/device/radio/intercom{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csv" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/paper_bin,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csw" = (
-/obj/item/weapon/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)
-"csx" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/item/weapon/newspaper,
-/obj/item/weapon/reagent_containers/food/drinks/coffee,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csy" = (
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/item/weapon/paper_bin,
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csA" = (
-/obj/structure/noticeboard{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csD" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/donut,
-/obj/machinery/newscaster{
- pixel_x = -28
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csF" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/obj/effect/floor_decal/corner/blue/full,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csG" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/item/weapon/folder/sec,
-/obj/item/weapon/pen,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csH" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/weapon/folder/sec,
-/obj/item/weapon/pen,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csI" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/obj/effect/floor_decal/corner/blue/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/dark,
-/area/security/security_office)
-"csJ" = (
-/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)
-"csK" = (
-/obj/structure/table/standard,
-/obj/item/weapon/material/ashtray,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csL" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/security_office)
-"csO" = (
-/obj/machinery/vending/coffee,
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csP" = (
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csQ" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csR" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csS" = (
-/obj/machinery/camera/network/security{
- c_tag = "Security - Security Office";
- dir = 1;
- network = list("Security","Armoury")
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/light_switch{
- pixel_x = 11;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csT" = (
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"csU" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- 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)
-"csV" = (
-/obj/structure/flora/pottedplant/random,
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/security/security_office)
-"csW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/security_office)
-"csX" = (
-/obj/effect/floor_decal/corner/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{
- icon_state = "pipe-j2";
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/security/brig)
-"ctb" = (
-/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)
-"ctc" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/security/security_office)
-"ctg" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access = list(63)
- },
-/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)
-"cth" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor,
-/area/security/security_office)
-"cti" = (
-/turf/simulated/wall,
-/area/security/security_office)
-"ctr" = (
-/obj/structure/table/rack,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/door/window/southleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospheric Hardsuits";
- req_access = list(24)
- },
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/mask/breath,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- 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)
-"cts" = (
-/obj/structure/table/rack,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/door/window/southleft{
- dir = 4;
- icon_state = "left";
- name = "Atmospheric Hardsuits";
- 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)
-"ctt" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"ctx" = (
-/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)
-"cty" = (
-/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)
-"ctz" = (
-/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)
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled,
-/area/journalistoffice)
-"ctA" = (
-/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)
-"ctB" = (
-/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)
-"ctD" = (
-/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)
-"ctH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 6
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
- },
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctJ" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctK" = (
-/obj/item/toy/figure/journalist,
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctN" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctP" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctQ" = (
-/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)
-"ctT" = (
-/obj/machinery/light_switch{
- pixel_x = 24
- },
-/obj/structure/table/wood,
-/obj/item/glass_jar/peter,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"ctV" = (
-/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)
-"ctW" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/folder,
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"ctX" = (
-/obj/structure/table/wood,
-/obj/item/weapon/clipboard,
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"ctY" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/obj/item/weapon/pen/blue,
-/obj/item/weapon/pen/red,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"ctZ" = (
-/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/weapon/storage/photo_album,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cua" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cuc" = (
-/obj/structure/closet,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cue" = (
-/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)
-"cuf" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cug" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cuh" = (
-/obj/structure/bed/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)
-"cui" = (
-/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)
-"cuj" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cul" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cuo" = (
-/obj/machinery/requests_console{
- department = "Journalist's Office";
- dir = 8;
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cup" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 2
- },
-/obj/structure/noticeboard{
- desc = "A board for uncovering hidden conspiracies.";
- name = "corkboard";
- pixel_y = -32
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cuq" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green,
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cur" = (
-/obj/machinery/button/windowtint{
- dir = 2;
- id = "journalist";
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/carpet,
-/area/journalistoffice)
-"cus" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Starboard Corridor - Journalist's Office";
- dir = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = -27
- },
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cut" = (
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cuu" = (
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/wood,
-/area/journalistoffice)
-"cuC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- req_access = list(70)
- },
-/turf/simulated/floor/plating,
-/area/journalistoffice)
-"cuE" = (
-/turf/simulated/wall,
-/area/journalistoffice)
-"cuF" = (
-/obj/structure/table/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/cloning{
- pixel_x = 0
- },
-/obj/item/weapon/circuitboard/clonescanner,
-/obj/item/weapon/circuitboard/clonepod,
-/obj/item/weapon/circuitboard/scan_consolenew,
-/obj/item/weapon/circuitboard/med_data{
- pixel_x = 3;
- pixel_y = -3
- },
-/turf/simulated/floor/plating,
-/area/storage/tech)
-"cuQ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"cwf" = (
-/obj/structure/sign/securearea{
- name = "\improper CAUTION: TRASH COMPACTOR";
- pixel_x = 0
- },
-/turf/simulated/wall/r_wall,
-/area/maintenance/disposal)
-"cwx" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/roller{
- pixel_y = 4
- },
-/obj/item/roller{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"cxJ" = (
-/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)
-"cxQ" = (
-/obj/structure/table/rack{
- dir = 1
- },
-/obj/item/weapon/pickaxe{
- pixel_x = 5
- },
-/obj/item/weapon/shovel{
- pixel_x = -5
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"cBt" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"cHf" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"cOi" = (
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"cQr" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/conveyor_switch/oneway{
- id = "mail_chute"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"cRj" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/lime/full{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"cYM" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"dbQ" = (
-/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{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"diD" = (
-/obj/structure/table/standard,
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 7;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Surgery Emergency Phone";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/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.";
- name = "Surgery Cleaner"
- },
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"dmA" = (
-/obj/structure/disposalpipe/junction{
- dir = 1;
- icon_state = "pipe-j2"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"dnQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"drP" = (
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/structure/table/standard,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/device/radio{
- frequency = 1487;
- name = "Medbay Emergency Radio Link";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/device/radio{
- frequency = 1487;
- name = "Medbay Emergency Radio Link";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/device/gps{
- gpstag = "MED1"
- },
-/obj/item/device/gps{
- gpstag = "MED0"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"dsE" = (
-/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{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"duy" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/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{
- icon_state = "map-scrubbers";
- dir = 4
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"dvg" = (
-/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/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/medical_wall{
- name = "Medication Closet";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,
-/obj/item/weapon/storage/pill_bottle/dermaline,
-/obj/item/weapon/storage/pill_bottle/tramadol,
-/obj/item/weapon/storage/pill_bottle/dylovene,
-/obj/item/weapon/storage/pill_bottle/dylovene,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"dLZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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)
-"dTQ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"dVI" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"dWo" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/structure/window/reinforced,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"dXk" = (
-/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)
-"dYG" = (
-/obj/machinery/light/small,
-/obj/machinery/button/remote/blast_door{
- id = "emtshutter";
- name = "Garage Shutters Control";
- pixel_x = 0;
- pixel_y = -26;
- req_access = list(5)
- },
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 8
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - EMT Garage";
- dir = 1;
- icon_state = "camera"
- },
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"epT" = (
-/obj/machinery/door/airlock/engineering{
- name = "Medbay Substation";
- req_one_access = list(11,24,5)
- },
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"eDF" = (
-/obj/effect/floor_decal/corner/lime/full,
-/obj/effect/floor_decal/sign/gtr,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"eEV" = (
-/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)
-"eSy" = (
-/obj/machinery/disposal,
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white_full";
- dir = 4
- },
-/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{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/crew_quarters/heads/cmo)
-"eWc" = (
-/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{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "CHE2shutters";
- name = "Chemistry Window Shutters";
- opacity = 0
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"eXU" = (
-/obj/machinery/door/airlock/medical{
- autoclose = 0;
- icon_state = "door_open";
- id_tag = null;
- name = "Intensive Care Unit";
- req_access = list(66)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/medical/icu)
-"fmW" = (
-/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
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay2)
-"fnz" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/storage/box/beakers,
-/obj/item/clothing/glasses/science,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"foK" = (
-/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)
-"fxb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/medical{
- name = "Combined Operating Theatre";
- req_access = list(45)
- },
-/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/surgerywing)
-"fyv" = (
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"fAO" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"fBF" = (
-/obj/machinery/door/firedoor/multi_tile,
-/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/quartermaster/lobby)
-"fBO" = (
-/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"fCh" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"fDN" = (
-/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";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"fFC" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/icu)
-"fKg" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/adv{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/adv,
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Main Storage";
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"fKy" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"fOa" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"fWU" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"gbo" = (
-/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)
-"gbw" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- name = "Psychiatry";
- sortType = "Psychiatry"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"gcq" = (
-/obj/structure/reagent_dispensers/extinguisher,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"gcW" = (
-/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)
-"ggj" = (
-/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/break_room)
-"ghF" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/yellow{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"gql" = (
-/obj/structure/disposalpipe/segment,
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"grp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/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)
-"grH" = (
-/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{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"grI" = (
-/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)
-"grR" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"grV" = (
-/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";
- pixel_x = 0
- },
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"gst" = (
-/obj/random/junk,
-/turf/simulated/floor/carpet,
-/area/maintenance/bar)
-"gsw" = (
-/obj/item/clothing/mask/gas/clown_hat,
-/obj/item/clothing/shoes/clown_shoes,
-/obj/item/clothing/under/rank/clown,
-/obj/item/weapon/storage/backpack/clown,
-/obj/item/toy/figure/clown,
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"gsx" = (
-/obj/item/clothing/head/soft/mime,
-/obj/item/clothing/mask/gas/mime,
-/obj/item/clothing/shoes/mime,
-/obj/item/clothing/under/mime,
-/obj/item/toy/figure/mime,
-/obj/structure/closet{
- icon_closed = "cabinet_closed";
- icon_opened = "cabinet_open";
- icon_state = "cabinet_closed"
- },
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"gsy" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/obj/machinery/chem_heater,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"gsH" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/turf/simulated/floor/wood,
-/area/maintenance/bar)
-"gtz" = (
-/obj/structure/table/wood,
-/obj/item/weapon/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/weapon/storage/box/beanbags,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"gtB" = (
-/obj/machinery/smartfridge/drinks{
- req_access = list(25,28)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"gtC" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "barshutters01";
- name = "Bar Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/shaker,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"gtD" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "barshutters01";
- name = "Bar Shutters"
- },
-/obj/item/weapon/reagent_containers/food/drinks/teapot{
- pixel_y = 7
- },
-/obj/structure/table/reinforced,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"gtE" = (
-/obj/machinery/door/blast/shutters{
- dir = 2;
- id = "barshutters01";
- name = "Bar Shutters"
- },
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/clothing/head/cakehat,
-/turf/simulated/floor/lino,
-/area/crew_quarters/bar)
-"gtF" = (
-/obj/item/toy/figure/bartender,
-/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)
-"gtH" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"gtL" = (
-/obj/effect/floor_decal/spline/fancy/wood{
- icon_state = "spline_fancy";
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"gtO" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Access";
- req_access = list(12)
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"gtY" = (
-/obj/machinery/door/airlock/glass{
- name = "Diner"
- },
-/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)
-"gul" = (
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"guu" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"guz" = (
-/turf/simulated/floor/tiled/ramp/bottom,
-/area/crew_quarters/bar)
-"gvm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"gvo" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"gHb" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"gNO" = (
-/obj/machinery/atmospherics/pipe/simple/hidden,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"gOP" = (
-/obj/machinery/door/airlock{
- name = "Changing Room"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"gRJ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"gTr" = (
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"gVs" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/gen_treatment)
-"gXa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"gYD" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden{
- dir = 8;
- icon_state = "map"
- },
-/obj/effect/floor_decal/corner/beige/full,
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"haU" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/bed/chair/office/light,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"hcb" = (
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/obj/machinery/alarm{
- dir = 8;
- pixel_x = 25;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"hdn" = (
-/obj/effect/floor_decal/corner/beige/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 4
- },
-/obj/machinery/meter,
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/medical/icu)
-"heY" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"hjD" = (
-/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/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"hki" = (
-/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{
- name = "Maintenance Access";
- req_access = list(66)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/medical/surgeryobs)
-"hla" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/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{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"hlg" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/vending/cola,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"hmA" = (
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Temporary Morgue";
- dir = 1
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/morgue{
- icon_state = "morgue1";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"hnv" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/toxin{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/power/apc{
- dir = 1;
- is_critical = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/cable/green{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"hoM" = (
-/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)
-"hoR" = (
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"hzv" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "mining_internal"
- },
-/obj/machinery/mineral/output,
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"hOC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"hTM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"inc" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"irc" = (
-/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/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"irn" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/ramp,
-/area/medical/medbay2)
-"iuN" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"iIC" = (
-/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)
-"iMx" = (
-/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
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"iNY" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"iOJ" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"iTM" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"iXc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"jhE" = (
-/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)
-"jnz" = (
-/obj/structure/ladder/up,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"jtP" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/table/standard,
-/obj/item/weapon/wrapping_paper,
-/obj/effect/floor_decal/corner/brown/full,
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"jEY" = (
-/obj/machinery/conveyor{
- dir = 9;
- icon_state = "conveyor0";
- id = "mining_internal";
- reversed = 1
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"jQT" = (
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/iv_drip,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"jRc" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"kgh" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/chem_heater,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"kgI" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"kja" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"kqA" = (
-/obj/machinery/light/small/emergency{
- dir = 1
- },
-/obj/structure/table/rack,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"kqR" = (
-/obj/structure/bed/chair/office/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"kug" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"kyC" = (
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"kJC" = (
-/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,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"kLa" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"kLC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-scrubbers";
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"kSb" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/table/standard,
-/obj/item/roller{
- pixel_y = 4
- },
-/obj/item/roller{
- pixel_y = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"kWE" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"lfd" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"lho" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- 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/reception)
-"llb" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"llI" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"lnp" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 10
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"lpE" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"lpG" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"lqM" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"ltv" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/status_display/supply_display{
- pixel_x = -32
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"lCC" = (
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"lDe" = (
-/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{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "CHE2shutters";
- name = "Chemistry Window Shutters";
- opacity = 0
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced,
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"lFh" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"lIz" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"lQg" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/ore_box,
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"lUb" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"maz" = (
-/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)
-"mbs" = (
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"mgS" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"mhg" = (
-/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)
-"mmG" = (
-/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{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"mtB" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"mEE" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"mEF" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"mRk" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/bed/chair/office/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"mTc" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"mUk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
-/obj/machinery/light/small/emergency{
- icon_state = "bulb1";
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"mWw" = (
-/obj/machinery/door/window{
- base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Reception Desk";
- req_access = list(66)
- },
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"ngo" = (
-/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)
-"ngR" = (
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"nif" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Mail Maintenance";
- req_access = list(50)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"nud" = (
-/obj/machinery/disposal{
- name = "MediExpress - Storage"
- },
-/obj/structure/disposalpipe/trunk,
-/turf/simulated/floor/tiled,
-/area/medical/medbay)
-"nBa" = (
-/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/medbay)
-"nGb" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"nGz" = (
-/obj/structure/sign/drop,
-/turf/simulated/wall/r_wall,
-/area/maintenance/disposal)
-"nKK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"nOo" = (
-/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)
-"nRS" = (
-/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)
-"nYV" = (
-/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/dark,
-/area/maintenance/disposal)
-"nYY" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper_0";
- dir = 8
- },
-/obj/effect/floor_decal/corner/beige{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"oab" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/structure/disposalpipe/segment,
-/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/surgeryobs)
-"obO" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small/emergency,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"ofm" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"ogS" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"oip" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/tape_roll,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/machinery/requests_console{
- department = "Psychiatrist's Desk";
- departmentType = 1;
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"okG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"olp" = (
-/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";
- pixel_y = 0
- },
-/obj/machinery/light/small/emergency{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"omx" = (
-/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/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/plating,
-/area/medical/medbay2)
-"opk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"opA" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- icon_state = "warningcorner";
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"oqb" = (
-/obj/machinery/disposal{
- name = "mailing disposal unit"
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"oqI" = (
-/obj/machinery/power/terminal{
- dir = 8
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Medical Substation";
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/substation/medical)
-"oro" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"orx" = (
-/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";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"ovA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/universal,
-/turf/simulated/floor/plating,
-/area/maintenance/security_starboard)
-"oAG" = (
-/obj/structure/disposalpipe/tagger/partial{
- dir = 8;
- icon_state = "pipe-tagger-partial";
- 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
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"oBd" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"oEo" = (
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"oEX" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"oFJ" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 4
- },
-/obj/machinery/camera/network/supply{
- c_tag = "Cargo - Mail Sorting";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"oLn" = (
-/obj/structure/ladder,
-/turf/simulated/open,
-/area/maintenance/disposal)
-"oNt" = (
-/obj/item/weapon/stool/padded,
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"oRZ" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/rxglasses,
-/obj/item/weapon/cane,
-/obj/item/weapon/cane,
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24;
- req_one_access = list(24,11,55)
- },
-/obj/item/bodybag/cryobag,
-/obj/item/weapon/storage/box/cdeathalarm_kit,
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"oSF" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"oWF" = (
-/obj/structure/curtain,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"peG" = (
-/obj/effect/floor_decal/industrial/loading{
- icon_state = "loadingarea";
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"pjW" = (
-/turf/simulated/wall,
-/area/quartermaster/break_room)
-"pqr" = (
-/obj/structure/disposalpipe/sortjunction/untagged,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"prN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table/standard,
-/obj/item/weapon/packageWrap,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"pxo" = (
-/obj/structure/table/standard,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/machinery/alarm{
- pixel_y = 22
- },
-/obj/effect/floor_decal/corner/brown/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"pBT" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"pBU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/o2{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/firstaid/o2,
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/obj/machinery/firealarm/north,
-/turf/simulated/floor/tiled/white,
-/area/medical/main_storage)
-"pEO" = (
-/obj/machinery/mineral/output,
-/obj/machinery/conveyor{
- dir = 9;
- icon_state = "conveyor0";
- id = "mining_internal";
- reversed = 1
- },
-/turf/simulated/floor/plating,
-/area/outpost/mining_main/refinery)
-"pIL" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"pLP" = (
-/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)
-"pQW" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = "CONS2door";
- name = "Medical Bay";
- req_access = null
- },
-/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)
-"pRK" = (
-/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)
-"pTt" = (
-/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)
-"qbe" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"qbi" = (
-/obj/structure/bed/chair/office/dark{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"qgR" = (
-/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)
-"qgS" = (
-/obj/effect/floor_decal/corner/grey{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/sign/emt,
-/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/white,
-/area/medical/medbay)
-"qia" = (
-/obj/machinery/alarm/cold{
- dir = 1;
- pixel_y = -22
- },
-/obj/machinery/light,
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/morgue{
- icon_state = "morgue1";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"quw" = (
-/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)
-"qzp" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/ringer{
- department = "Medbay";
- id = "medbay_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(5)
- },
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"qFn" = (
-/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/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay2)
-"qGO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/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 = "Maintenance Access";
- req_access = list(12)
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"qLW" = (
-/obj/structure/table/rack,
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"qNc" = (
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"ral" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"rbe" = (
-/obj/structure/disposalpipe/sortjunction/flipped{
- dir = 1;
- name = "Sorting Office";
- sortType = "Sorting Office"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"rcr" = (
-/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/quartermaster/lobby)
-"rdq" = (
-/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)
-"riO" = (
-/obj/structure/disposaloutlet{
- icon_state = "outlet";
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"rrd" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/sign/icu,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"rvl" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/gen_treatment)
-"rwV" = (
-/obj/structure/bed/chair{
- dir = 4
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"rAl" = (
-/obj/structure/closet/crate/freezer{
- name = "Various Blood Packs"
- },
-/obj/item/weapon/reagent_containers/blood/AMinus,
-/obj/item/weapon/reagent_containers/blood/AMinus,
-/obj/item/weapon/reagent_containers/blood/APlus,
-/obj/item/weapon/reagent_containers/blood/APlus,
-/obj/item/weapon/reagent_containers/blood/BMinus,
-/obj/item/weapon/reagent_containers/blood/BMinus,
-/obj/item/weapon/reagent_containers/blood/BPlus,
-/obj/item/weapon/reagent_containers/blood/BPlus,
-/obj/item/weapon/reagent_containers/blood/OPlus,
-/obj/item/weapon/reagent_containers/blood/OPlus,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Cold Storage";
- dir = 4
- },
-/turf/simulated/floor/tiled/freezer{
- name = "cold storage tiles";
- temperature = 278
- },
-/area/medical/surgerywing)
-"rDP" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/structure/bed/chair{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"rEu" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"rKm" = (
-/obj/structure/disposalpipe/junction/yjunction,
-/obj/effect/floor_decal/corner/brown{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"rSU" = (
-/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{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/sign/greencross,
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"rUV" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"saK" = (
-/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/dark,
-/area/maintenance/disposal)
-"shM" = (
-/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)
-"snS" = (
-/obj/machinery/atmospherics/binary/pump{
- dir = 2;
- use_power = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"svt" = (
-/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)
-"sDJ" = (
-/obj/structure/disposalpipe/segment,
-/turf/simulated/wall,
-/area/maintenance/disposal)
-"sHz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/research_port)
-"sIm" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryprep)
-"sJx" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"sVQ" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"tij" = (
-/obj/machinery/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{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"tsg" = (
-/obj/structure/sign/electricshock,
-/turf/simulated/wall,
-/area/maintenance/bar)
-"ttI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/vending/medical{
- density = 0;
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"tww" = (
-/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{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"txO" = (
-/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)
-"tzW" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/effect/floor_decal/corner/paleblue/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/surgerywing)
-"tDD" = (
-/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)
-"tFi" = (
-/obj/structure/disposalpipe/up{
- icon_state = "pipe-u";
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "12-0"
- },
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
-/obj/machinery/atmospherics/pipe/zpipe/up/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"tFP" = (
-/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/door/firedoor,
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"tHH" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"tOj" = (
-/obj/machinery/power/apc/high{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/green{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 10;
- icon_state = "intact"
- },
-/turf/simulated/floor/plating,
-/area/medical/cryo)
-"tRw" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/atm{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"tTJ" = (
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/medical_wall{
- name = "Medication Closet";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,
-/obj/item/weapon/storage/pill_bottle/dermaline,
-/obj/item/weapon/storage/pill_bottle/tramadol,
-/obj/item/weapon/storage/pill_bottle/dylovene,
-/obj/item/weapon/storage/pill_bottle/dylovene,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"tUu" = (
-/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";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"tWi" = (
-/obj/machinery/mineral/processing_unit_console{
- pixel_y = 32
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/red{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"tXU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/machinery/meter{
- name = "Scrubbers"
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"tZA" = (
-/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{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "CHE2shutters";
- name = "Chemistry Window Shutters";
- opacity = 0
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/medical/chemistry)
-"ufe" = (
-/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
- },
-/turf/simulated/floor/tiled,
-/area/medical/medbay2)
-"ufj" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/obj/structure/morgue{
- icon_state = "morgue1";
- dir = 1
- },
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"uga" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/table/standard,
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 1;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Reception Emergency Phone";
- pixel_x = -5;
- pixel_y = 4
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"uiA" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/table/standard,
-/obj/machinery/door/window{
- base_state = "left";
- dir = 4;
- icon_state = "left";
- name = "MediExpress - Surgery";
- req_access = list(66)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/surgeryobs)
-"uqm" = (
-/obj/structure/disposalpipe/down{
- icon_state = "pipe-d";
- dir = 8
- },
-/obj/structure/lattice/catwalk,
-/obj/structure/sign/drop{
- pixel_y = 32
- },
-/turf/simulated/open,
-/area/maintenance/medbay)
-"utc" = (
-/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{
- icon_state = "intact-supply";
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"uQH" = (
-/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/medical/medbay)
-"uSR" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"uVG" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled/white,
-/area/medical/gen_treatment)
-"uXm" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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/white,
-/area/medical/reception)
-"vcx" = (
-/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/full{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"vnl" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- icon_state = "intact-supply";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"vnH" = (
-/obj/structure/closet/secure_closet/miner,
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/status_display{
- pixel_x = -32
- },
-/obj/effect/floor_decal/corner/blue{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"vus" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/aft)
-"vyF" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/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";
- pixel_y = 0
- },
-/turf/simulated/floor/plating,
-/area/maintenance/bar)
-"vAr" = (
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/effect/floor_decal/corner/green{
- icon_state = "corner_white";
- dir = 6
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/refinery)
-"vEZ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/floor_decal/industrial/loading,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - General Treatment 2";
- dir = 8;
- icon_state = "camera"
- },
-/turf/simulated/floor/tiled,
-/area/medical/gen_treatment)
-"vFt" = (
-/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)
-"vGv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"vIw" = (
-/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)
-"vOX" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- icon_state = "map-scrubbers";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/medbay)
-"vPN" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"vTp" = (
-/obj/structure/closet/crate,
-/obj/random/loot,
-/turf/simulated/floor/plating,
-/area/maintenance/cargo)
-"wcb" = (
-/obj/machinery/hologram/holopad,
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/exam_room{
- name = "\improper Medical - Exam Room 1"
- })
-"wel" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/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"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"wrl" = (
-/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)
-"wAc" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"wAo" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"wIQ" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light{
- dir = 4;
- status = 2
- },
-/obj/effect/large_stock_marker,
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"wJR" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"wKI" = (
-/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)
-"wNz" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/effect/floor_decal/sign/cmo,
-/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 = 8;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay2)
-"wYw" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 6
- },
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"xbY" = (
-/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)
-"xjb" = (
-/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)
-"xob" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal,
-/turf/simulated/floor/tiled/dark,
-/area/maintenance/disposal)
-"xuY" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper_0";
- dir = 4
- },
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/icu)
-"xCL" = (
-/obj/machinery/hologram/holopad,
-/turf/simulated/floor/tiled,
-/area/quartermaster/mail_room)
-"xIy" = (
-/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)
-"xIJ" = (
-/turf/simulated/wall,
-/area/quartermaster/mail_room)
-"xIT" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/medical/reception)
-"xNM" = (
-/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)
-"xUH" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/power/apc{
- dir = 2;
- name = "south bump";
- pixel_y = -24
- },
-/obj/structure/cable/green{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"xUY" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"xVE" = (
-/obj/structure/morgue{
- icon_state = "morgue1";
- dir = 8
- },
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled/dark{
- name = "cooled dark floor";
- temperature = 278
- },
-/area/medical/temp_morgue)
-"xXW" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- icon_state = "intact-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{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/simulated/floor/tiled,
-/area/quartermaster/lobby)
-"xYf" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/medical/icu)
-"ybr" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"ygv" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/port)
-"ygw" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"ygx" = (
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"ygy" = (
-/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)
-"ygG" = (
-/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{
- name = "Maintenance Access";
- req_access = list(66)
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"ygJ" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/device/radio/intercom{
- pixel_y = 27
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ygK" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/structure/sink{
- pixel_y = 24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ygM" = (
-/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)
-"ygN" = (
-/turf/simulated/floor/tiled/ramp{
- icon_state = "ramptop";
- dir = 1
- },
-/area/hallway/primary/starboard)
-"ygO" = (
-/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)
-"ygP" = (
-/obj/structure/flora/pottedplant/random,
-/obj/machinery/alarm{
- pixel_y = 23
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"ygQ" = (
-/obj/machinery/disposal,
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"ygR" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Staff Smoking Lounge"
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"ygS" = (
-/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)
-"ygT" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/donut,
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"ygU" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/item/weapon/stool/padded,
-/obj/machinery/ringer{
- department = "Medbay";
- id = "medbay_ringer";
- pixel_x = 0;
- pixel_y = 30;
- req_access = list(5)
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"ygW" = (
-/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"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"ygZ" = (
-/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/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yha" = (
-/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/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhb" = (
-/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/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhc" = (
-/turf/simulated/wall,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhd" = (
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/starboard)
-"yhe" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/starboard)
-"yhf" = (
-/obj/effect/floor_decal/corner/lime/full{
- icon_state = "corner_white_full";
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/starboard)
-"yhh" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"yhi" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"yhj" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/medbreak)
-"yhk" = (
-/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/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/plating,
-/area/crew_quarters/medbreak)
-"yhl" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/glass,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"yhm" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/item/weapon/stool/padded,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"yhn" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"yho" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/obj/structure/table/standard,
-/obj/item/weapon/storage/box/drinkingglasses{
- pixel_x = 1;
- pixel_y = 4
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"yhq" = (
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Port 1";
- dir = 8
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1";
- pixel_x = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"yhr" = (
-/obj/structure/table/standard,
-/obj/machinery/computer/med_data/laptop,
-/turf/simulated/floor/carpet/blue,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhs" = (
-/obj/structure/table/standard,
-/obj/item/device/radio{
- anchored = 1;
- broadcasting = 0;
- canhear_range = 1;
- frequency = 1487;
- icon = 'icons/obj/items.dmi';
- icon_state = "red_phone";
- listening = 1;
- name = "Examination Room Emergency Phone";
- pixel_x = 5;
- pixel_y = -4
- },
-/turf/simulated/floor/carpet/blue,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yht" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/white,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhv" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/door/firedoor,
/obj/machinery/door/blast/shutters{
@@ -62674,38 +33468,21 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yhy" = (
+"bfk" = (
/turf/simulated/floor/tiled/white,
/area/hallway/primary/starboard)
-"yhz" = (
-/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)
-"yhA" = (
+"bfl" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/starboard)
+"bfm" = (
/obj/structure/bed/chair/comfy/beige,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhB" = (
+"bfn" = (
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhC" = (
+"bfo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -62714,7 +33491,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhD" = (
+"bfp" = (
/obj/machinery/door/airlock/glass_medical{
name = "Staff Smoking Lounge";
req_access = list(66)
@@ -62734,7 +33511,7 @@
dir = 5
},
/area/crew_quarters/medbreak)
-"yhE" = (
+"bfq" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -62744,7 +33521,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yhF" = (
+"bfr" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
@@ -62755,7 +33532,7 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yhG" = (
+"bfs" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
@@ -62763,13 +33540,576 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yhH" = (
+"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)
-"yhJ" = (
+"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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/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)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ 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{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/bridge/meeting_room)
+"bfA" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/bridge)
+"bfB" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/bridge)
+"bfC" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/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_access = list(19)
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bfE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bfF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"bfG" = (
+/obj/structure/janitorialcart,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bfH" = (
+/obj/structure/closet/jcloset,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bfI" = (
+/obj/structure/table/steel,
+/obj/item/watertank/janitor,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bfJ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/mousetraps{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/storage/box/mousetraps{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/mousetraps{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bfK" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/closet/crate/software_backup,
+/turf/simulated/floor/tiled,
+/area/storage/tech)
+"bfL" = (
+/turf/simulated/floor/tiled,
+/area/storage/tech)
+"bfM" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access = list(19,23)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bfN" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/security/mining,
+/obj/item/weapon/circuitboard/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bfO" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/powermonitor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/security/engineering,
+/obj/item/weapon/circuitboard/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bfP" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/clothing/gloves/yellow,
+/obj/item/device/t_scanner,
+/obj/item/clothing/glasses/meson,
+/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/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/research_port)
+"bfS" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bfT" = (
+/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)
+"bfU" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bfV" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ backwards = 4;
+ desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
+ dir = 8;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bfW" = (
+/obj/machinery/conveyor{
+ backwards = 4;
+ desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
+ dir = 8;
+ id = "RobotSurg"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bfX" = (
+/obj/machinery/conveyor{
+ backwards = 4;
+ desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
+ dir = 8;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bfY" = (
+/obj/structure/plasticflaps,
+/obj/machinery/door/firedoor,
+/obj/machinery/conveyor{
+ backwards = 4;
+ desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab.";
+ dir = 8;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bfZ" = (
+/obj/machinery/conveyor{
+ backwards = 10;
+ dir = 5;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bga" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bgb" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bgc" = (
+/obj/structure/grille,
+/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/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bgd" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "rwindow";
+ 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{
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor - Camera 7";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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";
+ pixel_y = 0
+ },
+/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/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/machinery/ringer{
+ department = "Chemistry";
+ id = "chemistry_ringer";
+ pixel_x = -30;
+ pixel_y = 0;
+ req_access = list(33)
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bgk" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bgl" = (
+/obj/machinery/smartfridge/secure/medbay{
+ density = 1;
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"bgm" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bgn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bgo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bgp" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper_0";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bgs" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/iv_drip,
+/obj/machinery/light{
+ dir = 4;
+ status = 0
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bgt" = (
/obj/structure/bed/chair/office/light{
dir = 4
},
@@ -62803,7 +34143,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yhK" = (
+"bgu" = (
/obj/structure/table/standard,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
@@ -62816,7 +34156,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yhL" = (
+"bgv" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/bed/chair{
dir = 8
@@ -62826,13 +34166,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yhM" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yhN" = (
+"bgw" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/polarized{
@@ -62862,21 +34196,17 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yhO" = (
+"bgx" = (
/obj/effect/floor_decal/corner/lime/full,
/turf/simulated/floor/tiled/white,
/area/hallway/primary/starboard)
-"yhP" = (
-/obj/effect/floor_decal/corner/lime/diagonal,
-/turf/simulated/floor/tiled/white,
-/area/hallway/primary/starboard)
-"yhQ" = (
+"bgy" = (
/obj/effect/floor_decal/corner/lime/full{
dir = 4
},
/turf/simulated/floor/tiled/white,
/area/hallway/primary/starboard)
-"yhR" = (
+"bgz" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -62900,7 +34230,7 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/medbreak)
-"yhS" = (
+"bgA" = (
/obj/structure/table/glass,
/obj/item/weapon/material/ashtray/bronze,
/obj/machinery/button/windowtint{
@@ -62909,14 +34239,14 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhT" = (
+"bgB" = (
/obj/structure/bed/chair/comfy/beige{
dir = 8
},
/obj/machinery/firealarm/south,
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhU" = (
+"bgC" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -62932,7 +34262,7 @@
},
/turf/simulated/floor/tiled/dark,
/area/crew_quarters/medbreak)
-"yhV" = (
+"bgD" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -62947,29 +34277,741 @@
/obj/structure/window/reinforced,
/turf/simulated/floor/plating,
/area/crew_quarters/medbreak)
-"yhW" = (
+"bgE" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/table/standard,
/obj/item/weapon/storage/box/donkpockets,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yhX" = (
+"bgF" = (
/obj/effect/floor_decal/corner/white/diagonal,
/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/medbreak)
-"yhY" = (
-/obj/effect/floor_decal/corner/white/diagonal,
-/turf/simulated/floor/tiled,
-/area/crew_quarters/medbreak)
-"yhZ" = (
+"bgG" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/vending/cola,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yib" = (
+"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{
+ icon_state = "toilet00";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/bridge/meeting_room)
+"bgR" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/simulated/floor/wood,
+/area/bridge)
+"bgS" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = -30
+ },
+/turf/simulated/floor/carpet,
+/area/bridge)
+"bgT" = (
+/obj/structure/bed/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"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"bgY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"bgZ" = (
+/obj/machinery/disposal,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Command Dormitories";
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/cryo)
+"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/weapon/bikehorn,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bhd" = (
+/obj/structure/ladder{
+ icon_state = "ladder01";
+ pixel_y = 16
+ },
+/turf/simulated/open,
+/area/maintenance/maintcentral)
+"bhe" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bhf" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/lights/mixed{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/storage/box/lights/mixed{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/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/dark,
+/area/janitor)
+"bhg" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/robotics{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/mecha_control{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tech)
+"bhh" = (
+/obj/structure/sign/securearea,
+/turf/simulated/wall/r_wall,
+/area/storage/tech)
+"bhi" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/message_monitor{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/crew{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/crew{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/arcade/battle,
+/obj/item/weapon/circuitboard/arcade/orion_trail,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bhj" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/cloning{
+ pixel_x = 0
+ },
+/obj/item/weapon/circuitboard/clonescanner,
+/obj/item/weapon/circuitboard/clonepod,
+/obj/item/weapon/circuitboard/scan_consolenew,
+/obj/item/weapon/circuitboard/med_data{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bhk" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/unary_atmos/heater,
+/obj/item/weapon/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";
+ pixel_y = 0
+ },
+/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/machinery/conveyor{
+ backwards = 1;
+ id = "RobotSurg"
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bhn" = (
+/obj/structure/grille,
+/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/machinery/door/firedoor,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "CybGlass"
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bho" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/research{
+ desc = "It opens and closes. ";
+ name = "Cyborgification Bay";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bhp" = (
+/obj/structure/grille,
+/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/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bhq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ dir = 4;
+ id = "CybGlass"
+ },
+/obj/structure/window/reinforced/polarized{
+ dir = 1;
+ id = "CybGlass"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bhr" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bhs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bht" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bhu" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_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{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "CHE2shutters";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/chemistry)
+"bhx" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner";
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"bhF" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry Laboratory";
+ req_access = list(33)
+ },
+/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/chemistry)
+"bhG" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"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
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bhI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bhJ" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/device/mass_spectrometer,
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bhK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bhM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bhN" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bhO" = (
/obj/machinery/alarm{
dir = 4;
icon_state = "alarm0";
@@ -62982,7 +35024,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yic" = (
+"bhP" = (
/obj/structure/table/standard,
/obj/item/weapon/paper_bin{
pixel_x = -1;
@@ -62997,7 +35039,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yid" = (
+"bhQ" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -63008,7 +35050,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yie" = (
+"bhR" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/firealarm/east,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -63018,7 +35060,42 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yig" = (
+"bhS" = (
+/turf/simulated/wall,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bhT" = (
+/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{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bhU" = (
/obj/machinery/door/firedoor,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/door/blast/shutters{
@@ -63038,37 +35115,7 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yih" = (
-/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{
- name = "\improper Medical - Exam Room 1"
- })
-"yim" = (
+"bhV" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/table/standard,
/obj/machinery/microwave{
@@ -63077,7 +35124,7 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yin" = (
+"bhW" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
icon_state = "map-scrubbers";
@@ -63087,14 +35134,14 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yio" = (
+"bhX" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yip" = (
+"bhY" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/vending/snack,
/obj/machinery/light{
@@ -63103,7 +35150,649 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yiq" = (
+"bhZ" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/cmo)
+"bia" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/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)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ 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_access = list(19)
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bie" = (
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bif" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(19)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ 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)
+ },
+/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/dark,
+/area/janitor)
+"bin" = (
+/obj/structure/table/steel,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bio" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bip" = (
+/obj/item/weapon/aicard,
+/obj/item/weapon/aiModule/reset,
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"biq" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/weapon/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/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"bis" = (
+/obj/item/weapon/module/power_control,
+/obj/item/weapon/airlock_electronics,
+/obj/structure/table/steel,
+/obj/machinery/camera/network/engineering{
+ c_tag = "Engineering - Technical Storage";
+ dir = 1
+ },
+/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_x = 0;
+ 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;
+ layer = 2.9
+ },
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/turf/simulated/floor/plating,
+/area/storage/tech)
+"biw" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/bag/circuits/basic,
+/obj/item/device/integrated_electronics/wirer,
+/obj/item/device/integrated_electronics/debugger,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bix" = (
+/obj/machinery/conveyor{
+ blood_color = 1;
+ id = "RobotSurg"
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biy" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "RobotSurg"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biz" = (
+/obj/machinery/disposal,
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Robotics Manufacturing"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biA" = (
+/obj/structure/table/rack{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ desc = "A blue toolbox containing mechanic-related tools."
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ desc = "A blue toolbox containing mechanic-related tools."
+ },
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/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/weapon/storage/belt/utility,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biB" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biC" = (
+/obj/machinery/vending/robotics{
+ products = list(/obj/item/clothing/suit/storage/toggle/labcoat = 4, /obj/item/clothing/under/rank/roboticist = 4, /obj/item/stack/cable_coil = 4, /obj/item/weapon/cell/high = 12, /obj/item/device/assembly/prox_sensor = 8, /obj/item/device/assembly/signaler = 3, /obj/item/device/healthanalyzer = 8, /obj/item/weapon/scalpel = 2, /obj/item/weapon/circular_saw = 2, /obj/item/weapon/tank/anesthetic = 2, /obj/item/clothing/mask/breath/medical = 5, /obj/item/weapon/screwdriver = 5, /obj/item/weapon/crowbar = 5)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biD" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"biE" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"biF" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"biG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"biH" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/item/weapon/folder/purple,
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"biI" = (
+/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/assembly/robotics)
+"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";
+ pixel_y = 0
+ },
+/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/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor - Camera 6";
+ dir = 8
+ },
+/obj/machinery/station_map{
+ dir = 8;
+ pixel_x = 32
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"biN" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"biO" = (
+/obj/effect/floor_decal/corner/mauve/full,
+/obj/structure/table/standard,
+/obj/machinery/button/remote/blast_door{
+ id = "CHE3shutters";
+ name = "Desk Shutter Control";
+ pixel_x = 6;
+ pixel_y = 0;
+ req_access = list(33)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "CHE2shutters";
+ name = "Window Shutter Control";
+ pixel_x = -6;
+ pixel_y = 0;
+ req_access = list(33)
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biP" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biQ" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biR" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/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,
+/obj/item/stack/material/phoron,
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biS" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/item/device/destTagger,
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biT" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/chemical,
+/obj/item/device/radio/headset/headset_med,
+/obj/item/device/radio/headset/headset_med,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biU" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biV" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/chemistry)
+"biW" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"biY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"biZ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ICUshutters";
+ name = "ICU Shutters";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access = list(66)
+ },
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/icu)
+"bjc" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/secure_closet/medical_wall{
name = "Medication Closet";
@@ -63122,7 +35811,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yir" = (
+"bjd" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
icon_state = "intact-supply";
@@ -63140,7 +35829,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yis" = (
+"bje" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -63152,7 +35841,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yit" = (
+"bjf" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
@@ -63160,7 +35849,7 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yiu" = (
+"bjg" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/flora/pottedplant/random,
/obj/machinery/alarm{
@@ -63172,7 +35861,29 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yiw" = (
+"bjh" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bji" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bjj" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/alarm{
dir = 4;
@@ -63185,7 +35896,7 @@
/obj/machinery/disposal,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yix" = (
+"bjk" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/cable/green{
d1 = 2;
@@ -63197,7 +35908,7 @@
/obj/structure/disposalpipe/junction,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yiy" = (
+"bjl" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/structure/cable/green{
d2 = 8;
@@ -63210,12 +35921,23 @@
},
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yiz" = (
+"bjm" = (
/obj/effect/floor_decal/corner/white/diagonal,
/obj/machinery/vending/coffee,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yiA" = (
+"bjn" = (
+/obj/structure/table/glass,
+/obj/item/device/eftpos{
+ eftpos_name = "Medbay EFTPOS scanner"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/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"
@@ -63233,25 +35955,557 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/heads/cmo)
-"yiC" = (
-/obj/effect/floor_decal/corner/grey/diagonal,
-/obj/machinery/door/airlock/medical{
- name = "Examination Room 2";
- req_one_access = list(5)
+"bjp" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/CMO,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - CMO's Office"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"bjq" = (
+/obj/item/modular_computer/console/preset/medical,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"bjr" = (
+/obj/machinery/computer/med_data,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"bjs" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/belt/medical,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/glasses/hud/health,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"bjt" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bju" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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)
+ },
+/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)
+ },
+/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_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bjB" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(19)
+ },
+/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/dark,
+/area/janitor)
+"bjJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bjK" = (
+/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)
+"bjL" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(29)
+ },
+/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,
+/area/assembly/robotics)
+"bjM" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjO" = (
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjP" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjQ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjR" = (
+/obj/effect/floor_decal/corner/orange{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"bjS" = (
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"bjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bjV" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"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
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bjX" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_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{
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/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/structure/sign/chemistry,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "CHE2shutters";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"bkd" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "CHE3shutters";
+ name = "Chemistry Desk Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Chemistry Desk";
+ req_access = list(33)
+ },
+/obj/machinery/ringer_button{
+ id = "chemistry_ringer";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/table/reinforced,
+/obj/structure/noticeboard{
+ pixel_x = 32;
+ pixel_y = 0
+ },
/turf/simulated/floor/tiled/white,
-/area/medical/biostorage{
- name = "\improper Medical - Exam Room 2"
- })
-"yiD" = (
+/area/medical/reception)
+"bke" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "Medication Closet";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,
+/obj/item/weapon/storage/pill_bottle/dermaline,
+/obj/item/weapon/storage/pill_bottle/tramadol,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/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,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bkg" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bkh" = (
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ icon_state = "door_open";
+ id_tag = null;
+ name = "Intensive Care Unit";
+ req_access = list(66)
+ },
+/obj/machinery/door/firedoor,
+/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{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/medical/icu)
+"bkm" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/polarized{
@@ -63273,7 +36527,25 @@
/area/medical/biostorage{
name = "\improper Medical - Exam Room 2"
})
-"yiE" = (
+"bkn" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/door/airlock/medical{
+ name = "Examination Room 2";
+ req_one_access = list(5)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/medical/biostorage{
+ name = "\improper Medical - Exam Room 2"
+ })
+"bko" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/structure/closet/secure_closet/medical_wall{
name = "Medication Closet";
@@ -63292,7 +36564,29 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yiH" = (
+"bkp" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bkq" = (
+/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{
+ name = "\improper Medical - Exam Room 1"
+ })
+"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{
@@ -63309,10 +36603,324 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/crew_quarters/medbreak)
-"yiJ" = (
+"bkt" = (
+/obj/structure/table/glass,
+/obj/item/device/megaphone,
+/obj/item/device/radio{
+ frequency = 1487;
+ name = "Medbay Emergency Radio Link";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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/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/chair/office/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"bkw" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/computer/security/telescreen{
+ name = "Departmental Cameras";
+ network = list("Medical");
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/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_access = list(19)
+ },
+/obj/machinery/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/crew_quarters/medbreak)
-"yiK" = (
+/area/bridge/minibar)
+"bkB" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/minibar)
+"bkC" = (
+/obj/structure/table/rack,
+/obj/item/weapon/paper_bin{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/paper_bin{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bkD" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled/dark,
+/area/janitor)
+"bkE" = (
+/obj/structure/table/rack,
+/obj/item/weapon/caution{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/weapon/caution{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/caution,
+/obj/item/weapon/caution{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/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/item/device/radio/intercom{
+ pixel_x = -27
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkI" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ sortType = "Robotics";
+ name = "Robotics"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkL" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkN" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/machinery/ringer{
+ department = "Robotics";
+ id = "robo_ringer";
+ pixel_x = 30;
+ req_access = list(29)
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkO" = (
+/turf/simulated/floor/tiled/dark,
+/area/assembly/robotics)
+"bkP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bkQ" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bkR" = (
/obj/structure/sign/nosmoking_1{
pixel_x = 32
},
@@ -63323,7 +36931,284 @@
/obj/item/weapon/reagent_containers/spray,
/turf/simulated/floor/tiled/white,
/area/assembly/robotics)
-"yiL" = (
+"bkS" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -32
+ },
+/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/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkW" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkX" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bkY" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bkZ" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bla" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/requests_console{
+ department = "Medical Bay";
+ departmentType = 1;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Reception Emergency Phone";
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"blb" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/ringer{
+ department = "Medbay";
+ id = "medbay_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ req_access = list(5)
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"blc" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Lobby 3";
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bld" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/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/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"blh" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/sign/icu,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bli" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"blj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/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/medbay)
+"blk" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bll" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"blm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bln" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ 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/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"blp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"blq" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -63346,7 +37231,86 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yiN" = (
+"blr" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bls" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"blt" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/requests_console{
+ department = "Medical Bay";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"blu" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"blv" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = -2
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"blw" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"blx" = (
+/turf/simulated/wall,
+/area/medical/med_office{
+ name = "\improper Medical - Psych Stairway"
+ })
+"bly" = (
/obj/structure/flora/pottedplant/random,
/obj/effect/floor_decal/corner/lime/full{
icon_state = "corner_white_full";
@@ -63356,7 +37320,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiO" = (
+"blz" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
@@ -63377,7 +37341,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiP" = (
+"blA" = (
/obj/effect/floor_decal/corner/lime{
icon_state = "corner_white";
dir = 5
@@ -63403,7 +37367,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiQ" = (
+"blB" = (
/obj/effect/floor_decal/corner/lime/full{
icon_state = "corner_white_full";
dir = 1
@@ -63416,20 +37380,749 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiR" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 2;
- id_tag = null;
- name = "Medical Reception";
- req_access = list(5)
+"blC" = (
+/obj/structure/table/glass,
+/obj/item/weapon/clipboard,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
},
+/obj/machinery/firealarm/west,
+/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/weapon/paper_bin{
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"blG" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal,
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/stamp/cmo,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"blH" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/skills,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/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{
+ pixel_y = 23
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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/paleblue{
+ icon_state = "corner_white";
+ 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/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"blR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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{
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/bridge/minibar)
+"blW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/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{
+ icon_state = "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";
+ pixel_y = 0
+ },
+/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)
+"bme" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/research)
+"bmf" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 20
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bmg" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/plasteel{
+ amount = 20
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bmh" = (
+/obj/structure/table/standard,
+/obj/item/weapon/book/manual/ripley_build_and_repair,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/reagent_dispensers/acid{
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bmi" = (
+/obj/machinery/computer/rdconsole/robotics,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bmj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bmk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bml" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmp" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmq" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bms" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmv" = (
+/obj/machinery/door/blast/shutters{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "MechBayShutter";
+ name = "Mech Bay Shutters";
+ opacity = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bmw" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "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{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"bmy" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bmz" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bmA" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bmB" = (
/obj/effect/floor_decal/corner/white/diagonal,
-/obj/machinery/door/firedoor/multi_tile{
+/obj/structure/table/standard,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bmC" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/bed/chair/office/light{
dir = 1
},
/turf/simulated/floor/tiled,
/area/medical/reception)
-"yiS" = (
+"bmD" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bmE" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/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/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bmH" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ name = "Chemistry";
+ sortType = "Chemistry"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bmI" = (
+/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/structure/disposalpipe/segment,
+/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"
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bmL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 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/medical/medbay)
+"bmM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bmO" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bmP" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
@@ -63445,7 +38138,85 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yiU" = (
+"bmQ" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bmR" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bmS" = (
+/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{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bmT" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bmU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/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
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bmX" = (
/obj/effect/floor_decal/corner/lime{
icon_state = "corner_white";
dir = 9
@@ -63463,7 +38234,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiV" = (
+"bmY" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -63480,13 +38251,13 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiW" = (
+"bmZ" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/turf/simulated/floor/tiled/white,
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiX" = (
+"bna" = (
/obj/effect/floor_decal/corner/lime{
dir = 6
},
@@ -63495,7 +38266,811 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yiY" = (
+"bnb" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/machinery/photocopier,
+/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/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/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"
+ },
+/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/item/weapon/stool/padded,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/bridge/minibar)
+"bnn" = (
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/coffee/full,
+/turf/simulated/floor/carpet,
+/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{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bnv" = (
+/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/research_port)
+"bnw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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)
+ },
+/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)
+"bnB" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Robotics Maintenance";
+ req_access = list(47)
+ },
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"bnC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bnD" = (
+/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)
+"bnE" = (
+/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/tiled/white,
+/area/assembly/robotics)
+"bnF" = (
+/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)
+"bnG" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Components Manufacture";
+ req_access = list(29)
+ },
+/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/assembly/robotics)
+"bnH" = (
+/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,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnI" = (
+/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/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnJ" = (
+/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/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnL" = (
+/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,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnM" = (
+/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{
+ icon_state = "warning";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnO" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ autoclose = 1;
+ dir = 2;
+ id_tag = "RobMechBay";
+ req_access = list(29)
+ },
+/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/assembly/robotics)
+"bnP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnQ" = (
+/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)
+"bnR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnS" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/shutters{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "MechBayShutter";
+ name = "Mech Bay Shutters";
+ opacity = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bnT" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "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/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = -32
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"bnX" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bnY" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ 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/reception)
+"bnZ" = (
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Reception Desk";
+ req_access = list(66)
+ },
+/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
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"boa" = (
+/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
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bob" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"boc" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bod" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ id_tag = null;
+ 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/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bog" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"boh" = (
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"boi" = (
+/obj/effect/floor_decal/corner/lime,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"boj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/effect/floor_decal/sign/gtr,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bok" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bol" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bom" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/south,
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bon" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bop" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -63514,7 +39089,157 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yiZ" = (
+"boq" = (
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Examination Room Emergency Phone";
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Examination Office 1";
+ dir = 4;
+ icon_state = "camera"
+ },
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bor" = (
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bos" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 7
+ },
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bot" = (
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bou" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/door/airlock/medical{
+ name = "Examination Room 1";
+ req_one_access = list(5)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bov" = (
+/obj/effect/floor_decal/sign/ex,
+/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/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"box" = (
+/obj/effect/floor_decal/sign/p,
+/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/medical/medbay2)
+"boy" = (
/obj/machinery/door/airlock/medical{
name = "Psychiatric Wing";
req_access = list(5)
@@ -63538,7 +39263,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yja" = (
+"boz" = (
/obj/effect/floor_decal/corner/lime{
icon_state = "corner_white";
dir = 9
@@ -63563,7 +39288,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjb" = (
+"boA" = (
/obj/effect/floor_decal/corner/lime/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9
@@ -63584,7 +39309,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjc" = (
+"boB" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -63592,7 +39317,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjd" = (
+"boC" = (
/obj/structure/stairs/east,
/obj/structure/window/reinforced{
dir = 1
@@ -63601,7 +39326,653 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yje" = (
+"boD" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 2
+ },
+/obj/machinery/papershredder,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"boE" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"boF" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"boG" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/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{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/cmo)
+"boH" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"boI" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ is_critical = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"boJ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"boK" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/adv,
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Main Storage";
+ dir = 8;
+ icon_state = "camera"
+ },
+/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 = "tube1";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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"
+ },
+/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/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"boQ" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Break Room";
+ req_access = list(19)
+ },
+/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/item/weapon/stool/padded,
+/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/carpet,
+/area/bridge/minibar)
+"boT" = (
+/obj/structure/table/wood,
+/obj/item/weapon/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"
+ },
+/turf/simulated/floor/carpet,
+/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 = "tube1";
+ pixel_x = 0
+ },
+/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";
+ pixel_y = 0
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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{
+ charge = 0;
+ 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)
+"boZ" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Robotics Fabrication";
+ dir = 4;
+ network = list("Research")
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bpa" = (
+/obj/machinery/mecha_part_fabricator,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bpb" = (
+/obj/item/toy/figure/roboticist,
+/obj/machinery/r_n_d/circuit_imprinter,
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bpc" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt.";
+ id = "Robocompo";
+ name = "components conveyor switch"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bpd" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpe" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bph" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpi" = (
+/obj/machinery/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/assembly/robotics)
+"bpj" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Robotics Charging Bay";
+ dir = 4;
+ network = list("Research","Toxins Test Area")
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpk" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpm" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpn" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "It controls the Mech Bay's shutters.";
+ id = "MechBayShutter";
+ name = "Mech Bay shutters";
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bpo" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bpp" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bpq" = (
+/obj/turbolift_map_holder/aurora/civilian_aux,
+/turf/simulated/floor/plating,
+/area/turbolift/main_station_aux)
+"bpr" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/firealarm/west,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Lobby 1";
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bps" = (
+/obj/effect/floor_decal/corner/lime/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/medical/reception)
+"bpt" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 1;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Reception Emergency Phone";
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bpu" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bpv" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bpw" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/button/remote/blast_door{
+ id = "entrance_shutters";
+ name = "Entrance Shutters Control";
+ pixel_x = 0;
+ pixel_y = -6;
+ req_access = list(66)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_door";
+ name = "Triage Door Control";
+ pixel_x = 0;
+ pixel_y = 6;
+ req_access = list(66)
+ },
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bpx" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bpz" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera/network/medbay{
c_tag = "Medical - Port 2";
@@ -63613,7 +39984,72 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay)
-"yjf" = (
+"bpA" = (
+/turf/simulated/wall,
+/area/medical/gen_treatment)
+"bpB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ icon_state = "door_open";
+ id_tag = null;
+ name = "General Treatment Room";
+ req_access = list(66)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/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{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bpF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bpG" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -63631,7 +40067,14 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yjg" = (
+"bpH" = (
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/blue,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bpI" = (
/obj/structure/bed/chair/office/light{
dir = 1
},
@@ -63652,7 +40095,22 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yjh" = (
+"bpJ" = (
+/turf/simulated/floor/carpet/blue,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bpK" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/light_switch{
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/exam_room{
+ name = "\improper Medical - Exam Room 1"
+ })
+"bpL" = (
/obj/effect/floor_decal/corner/lime{
icon_state = "corner_white";
dir = 10
@@ -63663,12 +40121,34 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay2)
-"yji" = (
-/turf/simulated/wall,
-/area/medical/med_office{
- name = "\improper Medical - Psych Stairway"
- })
-"yjj" = (
+"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/lime{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bpN" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bpO" = (
/obj/effect/floor_decal/corner/lime/full,
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -63678,7 +40158,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjk" = (
+"bpP" = (
/obj/effect/floor_decal/corner/lime{
icon_state = "corner_white";
dir = 10
@@ -63688,18 +40168,18 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjl" = (
+"bpQ" = (
/turf/simulated/floor/tiled/white,
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjm" = (
+"bpR" = (
/obj/structure/stairs/east,
/turf/simulated/floor/tiled/white,
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjn" = (
+"bpS" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
/obj/structure/window/reinforced/polarized{
@@ -63720,7 +40200,24 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
-"yjo" = (
+"bpT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ id_tag = "CMOdoor";
+ name = "Chief Medical Officer's Office";
+ req_access = list(40)
+ },
+/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{
@@ -63737,7 +40234,527 @@
},
/turf/simulated/floor/plating,
/area/crew_quarters/heads/cmo)
-"yjq" = (
+"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/weapon/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ 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
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"bpZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"bqa" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/tape_roll,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/machinery/requests_console{
+ department = "Psychiatrist's Desk";
+ departmentType = 1;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/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/item/weapon/stool/padded,
+/turf/simulated/floor/carpet,
+/area/bridge/minibar)
+"bqe" = (
+/obj/structure/table/wood,
+/obj/item/weapon/material/ashtray/bronze,
+/turf/simulated/floor/carpet,
+/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";
+ pixel_y = 0
+ },
+/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)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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)
+"bqm" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "Robocompo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bqn" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "Robocompo"
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bqo" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "Robocompo"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqp" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "Robocompo"
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqq" = (
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqr" = (
+/obj/structure/table/standard,
+/obj/item/weapon/cell/high,
+/obj/item/weapon/cell/high,
+/obj/item/device/assembly/prox_sensor,
+/obj/item/device/assembly/prox_sensor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/weapon/crowbar,
+/obj/item/device/mmi/digital/posibrain,
+/obj/item/device/robotanalyzer,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqs" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/obj/item/device/flash/synthetic,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqt" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/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/robotics)
+"bqv" = (
+/obj/machinery/cryopod/robot,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"bqx" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled,
+/area/assembly/robotics)
+"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/machinery/status_display{
+ pixel_x = -32
+ },
+/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;
+ icon_state = "direction_sci";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ icon_state = "direction_eng";
+ 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/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/com{
+ dir = 1;
+ icon_state = "direction_com";
+ 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/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bqC" = (
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Reception Desk";
+ req_access = list(66)
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bqD" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/computer/crew,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled,
+/area/medical/reception)
+"bqE" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled,
+/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/lime,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bqH" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bqI" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/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{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bqL" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper_0";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bqM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/gen_treatment)
+"bqN" = (
+/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/medbay)
+"bqO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera/network/medbay{
c_tag = "Medical - Port 4";
@@ -63750,7 +40767,7 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay)
-"yjr" = (
+"bqP" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -63768,7 +40785,7 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yjt" = (
+"bqQ" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -63782,7 +40799,7 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yju" = (
+"bqR" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced/polarized{
@@ -63800,7 +40817,30 @@
/area/medical/exam_room{
name = "\improper Medical - Exam Room 1"
})
-"yjv" = (
+"bqS" = (
+/turf/simulated/floor/tiled/ramp,
+/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/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/ramp,
+/area/medical/medbay2)
+"bqU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/ramp,
+/area/medical/medbay2)
+"bqV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -63808,7 +40848,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjw" = (
+"bqW" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -63826,7 +40866,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjy" = (
+"bqX" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -63841,7 +40881,7 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjz" = (
+"bqY" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -63858,13 +40898,13 @@
/area/medical/med_office{
name = "\improper Medical - Psych Stairway"
})
-"yjA" = (
+"bqZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/simulated/wall,
/area/medical/medbay2)
-"yjB" = (
+"bra" = (
/obj/effect/floor_decal/corner/paleblue{
icon_state = "corner_white";
dir = 5
@@ -63878,7 +40918,647 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/medbay2)
-"yjC" = (
+"brb" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/sign/cmo,
+/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 = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"brc" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"brd" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bre" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/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,
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"brg" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"brh" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/rxglasses,
+/obj/item/weapon/cane,
+/obj/item/weapon/cane,
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/obj/item/bodybag/cryobag,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/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/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"brl" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled,
+/area/bridge/minibar)
+"brm" = (
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/carpet,
+/area/bridge/minibar)
+"brn" = (
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Break Room";
+ dir = 1;
+ network = list("Command","Bunker")
+ },
+/turf/simulated/floor/carpet,
+/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)
+"brs" = (
+/obj/structure/sign/poster,
+/turf/simulated/wall,
+/area/assembly/robotics)
+"brt" = (
+/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/assembly/robotics)
+"bru" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/sign/flag/nanotrasen/left,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"brv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/sign/flag/nanotrasen/right,
+/turf/simulated/floor/plating,
+/area/assembly/robotics)
+"brw" = (
+/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/assembly/robotics)
+"brx" = (
+/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 = "Robotics Lab";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/white,
+/area/assembly/robotics)
+"bry" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"brA" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"brB" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/sign/meeting_point{
+ 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/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/sign/greencross,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"brG" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/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/effect/floor_decal/corner/lime,
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/ringer_button{
+ id = "medbay_ringer";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"brJ" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_door";
+ name = "Main Exit Door Control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access = null
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"brK" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/effect/floor_decal/sign/gtr,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"brL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ icon_state = "door_open";
+ id_tag = null;
+ name = "General Treatment Room";
+ req_access = list(66)
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"brM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/effect/floor_decal/corner/beige/full,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"brN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/corner/beige/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"brO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/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{
+ icon_state = "warning";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"brQ" = (
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - General Treatment 1";
+ dir = 8;
+ icon_state = "camera"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"brR" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/gen_treatment)
+"brS" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"brT" = (
+/obj/machinery/ringer{
+ department = "Medbay";
+ id = "medbay_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ 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/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"brW" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ 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/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"brY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"brZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bsa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bsb" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/ringer{
+ department = "Medbay";
+ id = "medbay_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ req_access = list(5)
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bsf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/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/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bsi" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Main Storage";
+ req_access = list(66)
+ },
+/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/white,
+/area/medical/main_storage)
+"bsj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"bsk" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
@@ -63896,7 +41576,2765 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/main_storage)
-"yjF" = (
+"bsl" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ layer = 2.85;
+ name = "MediExpress - Storage";
+ req_access = list(66)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/main_storage)
+"bsm" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 8;
+ spread = 360;
+ spread_point = 2
+ },
+/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
+ },
+/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_access = list(19)
+ },
+/obj/machinery/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)
+"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
+ },
+/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{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 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";
+ pixel_y = 0
+ },
+/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)
+"bsu" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"bsv" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"bsw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid{
+ base_icon = 'icons/turf/flooring/plating.dmi';
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "dark";
+ name = "Server Walkway";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"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{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/server)
+"bsy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"bsz" = (
+/obj/machinery/power/apc/high{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Server Room"
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/portables_connector,
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"bsA" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 2;
+ icon_state = "freezer_1";
+ power_setting = 20;
+ set_temperature = 80;
+ use_power = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"bsB" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/item/weapon/packageWrap,
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsC" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsD" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsE" = (
+/obj/machinery/status_display{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsF" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsG" = (
+/obj/machinery/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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsH" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/machinery/computer/guestpass{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsI" = (
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsJ" = (
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsK" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsL" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research)
+"bsM" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
+ },
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsN" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Entrance"
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsO" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bsP" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bsQ" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor";
+ dir = 1
+ },
+/obj/machinery/computer/HolodeckControl/Exodus{
+ 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
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bsT" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bsU" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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/white,
+/area/medical/reception)
+"bsV" = (
+/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
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bsW" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bsX" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"btb" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/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,
+/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/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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"
+ },
+/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,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"btm" = (
+/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/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/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ name = "CMO's Office";
+ sortType = "CMO's Office"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bto" = (
+/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/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ name = "Medical Bay";
+ sortType = "Medical Bay"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"btp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-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/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/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/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"btr" = (
+/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;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bts" = (
+/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/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"btu" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"btv" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/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/white,
+/area/medical/medbay2)
+"btw" = (
+/obj/effect/floor_decal/sign/c2,
+/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/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/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";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"btz" = (
+/obj/machinery/alarm/server{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid{
+ base_icon = 'icons/turf/flooring/plating.dmi';
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "dark";
+ name = "Server Walkway";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"btA" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/bluegrid{
+ base_icon = 'icons/turf/flooring/plating.dmi';
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "dark";
+ name = "Server Walkway";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"btB" = (
+/turf/simulated/floor/bluegrid{
+ base_icon = 'icons/turf/flooring/plating.dmi';
+ icon = 'icons/turf/flooring/tiles.dmi';
+ icon_state = "dark";
+ name = "Server Walkway";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"btC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 8;
+ name = "Server Room";
+ opacity = 1;
+ req_access = list(30)
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Server Room"
+ },
+/obj/structure/plasticflaps/airtight,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"btD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"btE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"btF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"btG" = (
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"btH" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"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"
+ },
+/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"
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btM" = (
+/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/structure/disposalpipe/segment,
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btO" = (
+/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/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access";
+ req_access = list(47)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btQ" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"btS" = (
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 1;
+ icon_state = "direction_cryo";
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ icon_state = "direction_med";
+ 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)
+"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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"btU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
+ },
+/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;
+ icon_state = "direction_evac";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 8;
+ icon_state = "direction_cryo";
+ pixel_x = -32;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ icon_state = "direction_med";
+ 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)
+"btW" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ 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";
+ req_access = null
+ },
+/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/lime{
+ icon_state = "corner_white";
+ 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/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bub" = (
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ 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/lime{
+ icon_state = "corner_white";
+ 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_x = 0;
+ 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/effect/floor_decal/corner/lime/full,
+/obj/effect/floor_decal/sign/gtr,
+/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/effect/floor_decal/corner/lime/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"buj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/table/standard,
+/obj/item/roller{
+ pixel_y = 4
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"buk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/gloves,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bul" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bum" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bun" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"buo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bur" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/vending/medical{
+ density = 0;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bus" = (
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"but" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/medbay2)
+"buu" = (
+/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/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"buz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"buA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Cloning Laboratory";
+ req_access = list(66)
+ },
+/obj/structure/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/genetics_cloning)
+"buB" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/medical/genetics_cloning)
+"buC" = (
+/turf/simulated/wall,
+/area/medical/temp_morgue)
+"buD" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"buE" = (
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"buF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"buG" = (
+/obj/structure/morgue{
+ icon_state = "morgue1";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"buH" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"buI" = (
+/obj/structure/flora/pottedplant/random,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"buJ" = (
+/obj/machinery/r_n_d/server/core,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"buK" = (
+/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;
+ use_power = 1;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0
+ },
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/server)
+"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{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/server)
+"buM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"buN" = (
+/obj/machinery/computer/rdservercontrol,
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"buO" = (
+/obj/machinery/computer/message_monitor,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/server)
+"buP" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/paleblue/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Corridor Camera 3";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buU" = (
+/obj/machinery/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{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buW" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"buZ" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bva" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bvb" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "rwindow";
+ 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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/sign/greencross,
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bvh" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvi" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvj" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvk" = (
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvl" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvm" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvn" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Lobby 2";
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvo" = (
+/obj/structure/flora/pottedplant/random,
+/obj/effect/floor_decal/corner/pink{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/emt)
+"bvp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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/emt)
+"bvq" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/roller{
+ pixel_y = 4
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bvr" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bvs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/gen_treatment)
+"bvt" = (
+/obj/machinery/body_scanconsole{
+ dir = 4;
+ icon_state = "body_scannerconsole"
+ },
+/obj/effect/floor_decal/corner/beige/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bvu" = (
+/obj/machinery/bodyscanner{
+ dir = 8;
+ icon_state = "body_scanner_0"
+ },
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bvv" = (
+/turf/simulated/wall,
+/area/medical/cryo)
+"bvw" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bvy" = (
+/turf/simulated/wall,
+/area/medical/surgeryobs)
+"bvz" = (
+/turf/simulated/wall,
+/area/medical/surgerywing)
+"bvA" = (
+/obj/effect/floor_decal/corner/lime/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay2)
+"bvB" = (
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 4
+ },
+/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/medical/medbay2)
+"bvC" = (
+/turf/simulated/open,
+/area/turbolift/medical_station)
+"bvD" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bvE" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bvF" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bvG" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/sign/m,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bvH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Temporary Morgue";
+ req_access = list(6)
+ },
+/obj/structure/plasticflaps/airtight,
+/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/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bvI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bvJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bvK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bvL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"bvN" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_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,
+/turf/simulated/floor/tiled/white,
+/area/bridge)
+"bvQ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/full,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/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/ywflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"bvS" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/rdoffice)
+"bvT" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/purple{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"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)
+"bvV" = (
+/obj/structure/closet/medical_wall{
+ pixel_x = 32
+ },
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bvW" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/xenobiology/xenoflora)
+"bvX" = (
+/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/research{
+ name = "Xenoflora Research";
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/xenobiology/xenoflora)
+"bvY" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/lab)
+"bvZ" = (
+/obj/machinery/door/airlock/research{
+ name = "Research and Development";
+ req_access = list(7)
+ },
+/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/white,
+/area/rnd/lab)
+"bwa" = (
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/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 EMT Entrance";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bwd" = (
+/turf/simulated/wall,
+/area/medical/emt)
+"bwe" = (
+/obj/effect/floor_decal/corner/grey{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwf" = (
+/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/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bwg" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "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{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bwl" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bwm" = (
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bwn" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bwo" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bwp" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/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/surgeryobs)
+"bwq" = (
+/obj/structure/sink{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bwr" = (
+/obj/structure/table/standard,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/lime/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/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/windowtint{
+ id = "OR1";
+ pixel_x = 0;
+ pixel_y = 26;
+ req_access = list(66)
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/rack,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bwu" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom{
+ pixel_y = 27
+ },
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Surgery Emergency Phone";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/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.";
+ name = "Surgery Cleaner"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bwv" = (
+/obj/structure/table/standard,
+/obj/item/weapon/bonesetter,
+/obj/item/weapon/bonegel,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Operating Room 1";
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bww" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/FixOVein,
+/obj/machinery/vending/wallmed2{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bwx" = (
+/obj/structure/table/standard,
+/obj/item/weapon/retractor,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bwy" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
icon_state = "map_scrubber_on";
dir = 4
@@ -63912,7 +44350,2487 @@
},
/turf/simulated/floor/tiled,
/area/medical/medbay2)
-"yjG" = (
+"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
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"bwA" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/closet/wardrobe/white,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Cloning Laboratory";
+ dir = 4;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bwB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"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
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bwD" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/hologram/holopad,
+/obj/machinery/firealarm/east,
+/obj/machinery/light{
+ dir = 4;
+ status = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bwE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bwF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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)
+"bwG" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"bwH" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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,
+/turf/simulated/floor/tiled/white,
+/area/bridge)
+"bwJ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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/ppflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"bwL" = (
+/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/research_port)
+"bwM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bwN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/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{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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{
+ pixel_y = 32
+ },
+/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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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_x = 0;
+ 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{
+ layer = 4;
+ pixel_x = 0;
+ 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)
+ },
+/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)
+"bwY" = (
+/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/purple{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bxa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bxb" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/rnd/xenobiology/xenoflora)
+"bxc" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxd" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxf" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxg" = (
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxh" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bxi" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bxj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bxk" = (
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bxl" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bxm" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bxn" = (
+/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/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/ringer_button{
+ id = "sci_ringer";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/lab)
+"bxo" = (
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor - Camera 4"
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_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{
+ pixel_x = 32
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bxq" = (
+/obj/machinery/station_map{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bxr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/hallway/primary/central_one)
+"bxs" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Chapel";
+ sortType = "Chapel"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bxt" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bxu" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxv" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "Stabilization Kit";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/weapon/storage/pill_bottle/tramadol,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ is_critical = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxz" = (
+/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/industrial/hatch/yellow,
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "Medication Closet";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/antitoxin,
+/obj/item/weapon/storage/pill_bottle/dermaline,
+/obj/item/weapon/storage/pill_bottle/tramadol,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/storage/pill_bottle/dylovene,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 7;
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bxC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ name = "EMT Quarters";
+ req_access = list(67)
+ },
+/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/dark,
+/area/medical/emt)
+"bxD" = (
+/obj/effect/floor_decal/corner/grey{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/sign/emt,
+/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/white,
+/area/medical/medbay)
+"bxE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ icon_state = "pipe-y";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bxF" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bxG" = (
+/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/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bxH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/gen_treatment)
+"bxI" = (
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bxJ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - General Treatment 2";
+ dir = 8;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bxK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bxL" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/bed/chair/comfy/teal{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bxM" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bxN" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/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/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/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)
+"bxV" = (
+/obj/structure/table/standard,
+/obj/item/weapon/cautery,
+/obj/item/weapon/hemostat,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bxW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"bxX" = (
+/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/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"bxY" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/dna_scannernew,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bxZ" = (
+/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/white,
+/area/medical/genetics_cloning)
+"bya" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/computer/med_data,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"byb" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/morgue{
+ icon_state = "morgue1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"byc" = (
+/obj/machinery/alarm/cold{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/morgue{
+ icon_state = "morgue1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"byd" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Temporary Morgue";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/structure/morgue{
+ icon_state = "morgue1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark{
+ name = "cooled dark floor";
+ temperature = 278
+ },
+/area/medical/temp_morgue)
+"bye" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"byf" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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,
+/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/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_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/ppflowers,
+/turf/simulated/floor/grass,
+/area/bridge)
+"byk" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "cooling_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_one_access = list(11)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "cooling_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = 25;
+ req_one_access = list(11)
+ },
+/turf/simulated/floor/asteroid/ash/rocky,
+/area/mine/unexplored)
+"byl" = (
+/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)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bym" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ frequency = 1379;
+ id_tag = "cooling_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1379;
+ id_tag = "cooling_airlock";
+ layer = 3.3;
+ pixel_x = 0;
+ 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{
+ frequency = 1379;
+ id_tag = "cooling_sensor";
+ layer = 3.3;
+ master_tag = "cooling_airlock";
+ pixel_x = 12;
+ pixel_y = -25
+ },
+/obj/effect/decal/warning_stripes,
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"byn" = (
+/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)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"byo" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ layer = 3.3;
+ master_tag = "cooling_airlock";
+ name = "interior access button";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access = list(11)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"byp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"byq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ 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";
+ pixel_y = 0
+ },
+/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/blue,
+/area/rnd/rdoffice)
+"byu" = (
+/obj/machinery/door/window{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/blue,
+/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/blue,
+/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/weapon/stamp/rd{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/paper/monitorkey,
+/obj/item/device/megaphone,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/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 = "Psy"
+ },
+/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)
+"byC" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"byD" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/rnd/xenobiology/xenoflora)
+"byE" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"byF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"byG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"byH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"byI" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ req_access = list(47)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"byJ" = (
+/obj/item/toy/figure/scientist,
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"byK" = (
+/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/white,
+/area/rnd/lab)
+"byL" = (
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/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/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"byO" = (
+/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/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/lab)
+"byP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"byQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"byR" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "EMT Quarters";
+ req_access = list(67)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byV" = (
+/obj/machinery/firealarm/south,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byW" = (
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byY" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack,
+/obj/item/weapon/rig/medical/equipped,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Rescue Hardsuit";
+ req_access = list(67)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"byZ" = (
+/obj/effect/floor_decal/corner/grey{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bza" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bzb" = (
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/obj/effect/floor_decal/sign/gtr,
+/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;
+ icon_state = "body_scannerconsole"
+ },
+/obj/effect/floor_decal/corner/beige/full,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bze" = (
+/obj/machinery/bodyscanner{
+ dir = 8;
+ icon_state = "body_scanner_0"
+ },
+/obj/effect/floor_decal/corner/beige{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/medical/gen_treatment)
+"bzf" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bzg" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/bed/chair/comfy/teal{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bzh" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bzi" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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/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)
+"bzm" = (
+/obj/structure/table/standard,
+/obj/item/weapon/scalpel,
+/obj/item/weapon/circular_saw{
+ pixel_y = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bzn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/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
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay2)
+"bzp" = (
+/obj/machinery/computer/cloning,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bzq" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bzr" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/closet,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bzs" = (
+/turf/simulated/wall,
+/area/medical/genetics_cloning)
+"bzt" = (
+/obj/machinery/camera/network/command{
+ c_tag = "Bridge - Lift Lobby";
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bzu" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bzv" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ 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
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bzw" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ icon_state = "corner_white_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
+ },
+/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
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bzy" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(19)
+ },
+/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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bzA" = (
+/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/research_port)
+"bzB" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/rnd/rdoffice)
+"bzC" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/device/eftpos{
+ eftpos_name = "Research EFTPOS scanner"
+ },
+/turf/simulated/floor/carpet/blue,
+/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/blue,
+/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{
+ icon_state = "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{
+ icon_state = "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/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/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)
+"bzK" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bzL" = (
+/obj/machinery/vending/hydronutrients{
+ categories = 3
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bzM" = (
+/obj/machinery/biogenerator,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bzN" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bzO" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/ringer{
+ department = "R&D Laboratory";
+ id = "sci_ringer";
+ pixel_x = -30;
+ req_access = list(7)
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bzP" = (
+/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/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bzQ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bzR" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bzS" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/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;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ 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/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bzW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bzX" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "EMT Garage Access";
+ req_access = list(67)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bzY" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bzZ" = (
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/device/radio{
+ frequency = 1487;
+ name = "Medbay Emergency Radio Link";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/radio{
+ frequency = 1487;
+ name = "Medbay Emergency Radio Link";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/device/gps{
+ gpstag = "MED1"
+ },
+/obj/item/device/gps{
+ gpstag = "MED0"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bAa" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bAb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bAc" = (
+/obj/structure/table/standard,
+/obj/machinery/vending/wallmed2{
+ pixel_x = 28
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/machinery/light{
+ dir = 4;
+ status = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bAd" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bAe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay)
+"bAf" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/vending/medical{
+ density = 0;
+ pixel_x = 32
+ },
+/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)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/white,
+/area/medical/cryo)
+"bAh" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/bed/chair/comfy/teal{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bAi" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/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/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/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,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bAo" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ icon_state = "sink_alt";
+ name = "Surgical sink";
+ pixel_x = 20
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bAp" = (
/obj/structure/cable/green{
d1 = 2;
d2 = 4;
@@ -63930,7 +46848,7 @@
},
/turf/simulated/floor/tiled,
/area/medical/medbay2)
-"yjH" = (
+"bAq" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 8;
@@ -63949,7 +46867,361 @@
},
/turf/simulated/floor/tiled,
/area/medical/medbay2)
-"yjJ" = (
+"bAr" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/clonepod,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bAs" = (
+/obj/structure/bed/roller,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bAt" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bAu" = (
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/closet,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/genetics_cloning)
+"bAv" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bAw" = (
+/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/medbay)
+"bAx" = (
+/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/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,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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/chair/comfy/black{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Research Director's Office";
+ dir = 4;
+ network = list("Research")
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/turf/simulated/floor/carpet/blue,
+/area/rnd/rdoffice)
+"bAC" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/weapon/folder/purple,
+/turf/simulated/floor/carpet/blue,
+/area/rnd/rdoffice)
+"bAD" = (
+/obj/structure/bed/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/blue,
+/area/rnd/rdoffice)
+"bAE" = (
+/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/lamarr,
+/turf/simulated/floor/tiled,
+/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{
+ icon_state = "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 = "tube1";
+ pixel_x = 0
+ },
+/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,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bAK" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Corridor Camera 2";
+ dir = 8;
+ network = list("Research")
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bAL" = (
+/obj/machinery/seed_storage/xenobotany,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bAM" = (
+/obj/machinery/seed_extractor,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bAN" = (
+/obj/machinery/smartfridge,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bAO" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve/full,
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/item/weapon/folder/purple,
+/obj/item/weapon/stock_parts/manipulator,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bAP" = (
+/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{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bAQ" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bAR" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bAS" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/cell_charger,
+/obj/item/weapon/hand_labeler,
+/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 = "emtshutter";
+ name = "EMT Garage Door"
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bAV" = (
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bAW" = (
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bAX" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"bAY" = (
+/obj/machinery/computer/crew,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bAZ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bBa" = (
/obj/structure/table/standard,
/obj/machinery/camera/network/medbay{
c_tag = "Medical - EMT Quarters";
@@ -63961,7 +47233,128 @@
/obj/item/weapon/crowbar/red,
/turf/simulated/floor/tiled/dark,
/area/medical/emt)
-"yjM" = (
+"bBb" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/adv{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/turf/simulated/floor/tiled/dark,
+/area/medical/emt)
+"bBc" = (
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay)
+"bBd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medbay)
+"bBe" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Port 3";
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/medical/medbay)
+"bBf" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Cryogenics Control";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bBg" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8;
+ icon_state = "freezer"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bBh" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Pre-Op 1";
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/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{
+ icon_state = "corner_white";
+ 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)
+ },
+/obj/structure/plasticflaps/airtight,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/medical/surgerywing)
+"bBk" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
@@ -63986,10 +47379,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"yjN" = (
+"bBl" = (
+/turf/simulated/wall,
+/area/maintenance/substation/medical)
+"bBm" = (
/turf/simulated/wall/r_wall,
/area/maintenance/substation/medical)
-"yjO" = (
+"bBn" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/blast/shutters{
@@ -64006,7 +47402,456 @@
},
/turf/simulated/floor/plating,
/area/medical/genetics_cloning)
-"yjP" = (
+"bBo" = (
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bBp" = (
+/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/medbay)
+"bBq" = (
+/obj/machinery/light/small/emergency,
+/obj/structure/closet,
+/obj/random/loot,
+/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,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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)
+"bBx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bBy" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/carpet/blue,
+/area/rnd/rdoffice)
+"bBz" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/skills{
+ icon_state = "medlaptop"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/rnd/rdoffice)
+"bBA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/blue,
+/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{
+ icon_state = "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{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey,
+/turf/simulated/floor/tiled,
+/area/rnd/rdoffice)
+"bBD" = (
+/obj/machinery/computer/mecha,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/rnd/rdoffice)
+"bBE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bBF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bBG" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/botany/editor,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bBH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bBI" = (
+/obj/machinery/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/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bBJ" = (
+/obj/machinery/r_n_d/protolathe,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bBK" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bBL" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bBM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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)
+"bBN" = (
+/obj/machinery/firealarm/east,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bBO" = (
+/obj/machinery/light/small,
+/obj/machinery/button/remote/blast_door{
+ id = "emtshutter";
+ name = "Garage Shutters Control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access = list(5)
+ },
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - EMT Garage";
+ dir = 1;
+ icon_state = "camera"
+ },
+/turf/simulated/floor/plating,
+/area/medical/emt)
+"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)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sleep/main)
+"bBR" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/item/weapon/wrench,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bBS" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8;
+ icon_state = "freezer"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bBT" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/iv_drip,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bBU" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bBV" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/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/surgeryobs)
+"bBW" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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,
+/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)
+ },
+/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/surgerywing)
+"bBY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-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";
+ dir = 2
+ },
+/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/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/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/closet/crate/freezer{
+ name = "Fridge"
+ },
+/obj/structure/sign/nosmoking_1{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/medical/surgerywing)
+"bCe" = (
/obj/structure/cable/green{
d2 = 2;
icon_state = "0-2"
@@ -64033,7 +47878,57 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"yjU" = (
+"bCf" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ 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/power/apc{
+ dir = 1;
+ is_critical = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bCg" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ 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/engineering{
+ name = "Medbay Substation";
+ req_one_access = list(11,24,5)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bCh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -64050,7 +47945,602 @@
},
/turf/simulated/floor/plating,
/area/maintenance/medbay)
-"yjV" = (
+"bCi" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bCj" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ icon_state = "up-scrubbers";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ icon_state = "up-supply";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "12-0"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/up,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bCk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bCl" = (
+/obj/structure/disposalpipe/down{
+ icon_state = "pipe-d";
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/drop{
+ pixel_y = 32
+ },
+/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{
+ pixel_y = 23
+ },
+/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)
+"bCo" = (
+/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/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/blue,
+/area/rnd/rdoffice)
+"bCr" = (
+/obj/structure/table/rack,
+/obj/machinery/light_switch{
+ pixel_y = -23
+ },
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/weapon/cartridge/signal/science{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/signal/science,
+/obj/item/weapon/cartridge/signal/science,
+/obj/item/weapon/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{
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/circuitboard/teleporter,
+/obj/item/weapon/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{
+ name = "Research Director RC";
+ pixel_x = -2;
+ pixel_y = -30;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ announcementConsole = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/rdoffice)
+"bCv" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/closet/secure_closet/RD,
+/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,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bCy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bCz" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bCA" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 2;
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bCB" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 2;
+ icon_state = "heater"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bCC" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "To Waste"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bCD" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/firealarm/east,
+/obj/machinery/botany/extractor,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bCE" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Research & Development";
+ dir = 4;
+ network = list("Research")
+ },
+/obj/machinery/computer/rdconsole/core,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bCF" = (
+/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/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bCG" = (
+/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/r_n_d/circuit_imprinter,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/lab)
+"bCH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/mauve/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/lab)
+"bCI" = (
+/obj/structure/table/standard,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/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;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ 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/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bCM" = (
+/obj/structure/cryofeed{
+ icon_state = "cryo_rear";
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/main)
+"bCN" = (
+/obj/structure/cryofeed{
+ icon_state = "cryo_rear";
+ dir = 2
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/main)
+"bCO" = (
+/obj/structure/cryofeed{
+ icon_state = "cryo_rear";
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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/lime{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sleep/main)
+"bCQ" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sleep/main)
+"bCR" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bCS" = (
+/obj/machinery/power/apc/high{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bCT" = (
+/obj/structure/disposaloutlet{
+ icon_state = "outlet";
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bCU" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "MediExpress - Surgery";
+ req_access = list(66)
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bCV" = (
+/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
+ },
+/obj/effect/floor_decal/corner/lime/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bCW" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bCX" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/corner/lime/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bCY" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/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 = "tube1";
+ pixel_y = 0
+ },
+/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/machinery/hologram/holopad,
+/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/alarm/cold{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/medical/surgerywing)
+"bDc" = (
/obj/machinery/power/smes/buildable{
charge = 0;
RCon_tag = "Substation - Medical Main"
@@ -64062,7 +48552,470 @@
},
/turf/simulated/floor/plating,
/area/maintenance/substation/medical)
-"yka" = (
+"bDd" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Medical Substation";
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bDe" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Psychiatry";
+ sortType = "Psychiatry"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bDf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bDg" = (
+/obj/random/junk,
+/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/plating,
+/area/maintenance/medbay)
+"bDh" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/turbolift/command_sub)
+"bDi" = (
+/obj/structure/bed/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 = "Psy"
+ },
+/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)
+ },
+/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 = "Psy"
+ },
+/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{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/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,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bDp" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/rnd/xenobiology/xenoflora)
+"bDq" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bDr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bDs" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bDu" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/misc_lab)
+"bDv" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"bDw" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"bDx" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"bDy" = (
+/obj/machinery/door/airlock/research{
+ name = "Materials";
+ req_access = list(47)
+ },
+/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/white,
+/area/rnd/misc_lab)
+"bDz" = (
+/turf/simulated/wall,
+/area/rnd/misc_lab)
+"bDA" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/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{
+ pixel_y = 27
+ },
+/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/cigarette,
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/main)
+"bDF" = (
+/obj/machinery/cryopod{
+ icon_state = "body_scanner_0";
+ dir = 2
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/main)
+"bDG" = (
+/obj/machinery/cryopod{
+ icon_state = "body_scanner_0";
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/ramp,
+/area/crew_quarters/sleep/main)
+"bDJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/plating,
+/area/medical/cryo)
+"bDK" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/iv_drip,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bDL" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bDM" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bDN" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/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)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ 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)
+"bDQ" = (
+/obj/structure/closet/crate/freezer{
+ name = "Various Blood Packs"
+ },
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/APlus,
+/obj/item/weapon/reagent_containers/blood/APlus,
+/obj/item/weapon/reagent_containers/blood/BMinus,
+/obj/item/weapon/reagent_containers/blood/BMinus,
+/obj/item/weapon/reagent_containers/blood/BPlus,
+/obj/item/weapon/reagent_containers/blood/BPlus,
+/obj/item/weapon/reagent_containers/blood/OPlus,
+/obj/item/weapon/reagent_containers/blood/OPlus,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Cold Storage";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/medical/surgerywing)
+"bDR" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/bloodpacks,
+/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";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bDU" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Medbay Substation";
+ req_one_access = list(11,24,5)
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/medical)
+"bDV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64071,7 +49024,442 @@
},
/turf/simulated/floor/plating,
/area/maintenance/medbay)
-"ykb" = (
+"bDW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bDX" = (
+/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,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bDY" = (
+/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/plating,
+/area/maintenance/medbay)
+"bDZ" = (
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bEa" = (
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/turbolift/command_sub)
+"bEb" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/turbolift/command_sub)
+"bEc" = (
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bEd" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEe" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEf" = (
+/obj/effect/floor_decal/corner/mauve,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEg" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Break Room"
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEh" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEi" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEk" = (
+/obj/machinery/vending/snack,
+/obj/machinery/status_display{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/research)
+"bEm" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/mauve/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bEn" = (
+/obj/machinery/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{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bEo" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bEp" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bEq" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/disk/botany,
+/obj/item/weapon/disk/botany,
+/obj/item/weapon/disk/botany,
+/obj/item/weapon/disk/botany,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bEr" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bEs" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bEt" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bEu" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/beakers,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEv" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEw" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/chem_heater,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEx" = (
+/obj/machinery/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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEz" = (
+/obj/machinery/disposal,
+/obj/item/device/radio/intercom{
+ pixel_x = 27
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bEA" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/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"
+ },
+/obj/structure/disposalpipe/segment,
+/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{
+ icon_state = "ramptop";
+ 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{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/main)
+"bEH" = (
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/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{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/main)
+"bEK" = (
+/turf/simulated/wall,
+/area/maintenance/bar)
+"bEL" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -25
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bEM" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bEO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64084,7 +49472,1831 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/medbay)
-"ykc" = (
+"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)
+"bER" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bES" = (
+/obj/effect/landmark/start{
+ name = "Xenobiologist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bET" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEU" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEV" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Lab Assistant"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEW" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Lab Assistant"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bEY" = (
+/obj/item/device/radio/intercom{
+ pixel_x = 27
+ },
+/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)
+"bFa" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Genetics Laboratory";
+ req_access = list(47)
+ },
+/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/white,
+/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/atmospherics/pipe/simple/visible,
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ icon_state = "right";
+ name = "Controlled Environment Zone";
+ req_access = list(55)
+ },
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ icon_state = "right";
+ name = "Controlled Environment Zone";
+ req_access = list(55)
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bFd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bFe" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bFf" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bFg" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bFh" = (
+/obj/structure/sign/nosmoking_1{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/storage/fancy/vials,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bFi" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bFj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bFk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bFl" = (
+/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/rnd/misc_lab)
+"bFm" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"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"
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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{
+ icon_state = "rwindow";
+ 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,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bFs" = (
+/obj/effect/floor_decal/corner/green,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bFt" = (
+/obj/effect/floor_decal/corner/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/green{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bFv" = (
+/turf/simulated/floor/tiled/ramp{
+ icon_state = "ramptop";
+ 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{
+ icon_state = "intact-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"
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/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{
+ name = "Maintenance Access";
+ req_access = null;
+ req_one_access = list(12,66)
+ },
+/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{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bFI" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bFJ" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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{
+ icon_state = "intact-supply";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bFK" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bFL" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime{
+ dir = 6
+ },
+/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";
+ pixel_y = 0
+ },
+/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/table/rack,
+/turf/simulated/floor/tiled,
+/area/maintenance/medbay)
+"bFS" = (
+/obj/structure/closet,
+/obj/random/loot,
+/turf/simulated/floor/tiled,
+/area/maintenance/medbay)
+"bFT" = (
+/obj/structure/closet,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bFU" = (
+/obj/machinery/papershredder,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bFV" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bFW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/folder/purple,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bFX" = (
+/obj/structure/table/standard,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/folder/purple,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bFY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Research Director"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bFZ" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bGa" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Corridor Camera 1"
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bGb" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bGc" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bGd" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/light,
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bGe" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled{
+ icon_state = "vault";
+ dir = 5
+ },
+/area/rnd/xenobiology/xenoflora)
+"bGf" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/white,
+/area/rnd/xenobiology/xenoflora)
+"bGg" = (
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGh" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Chemistry Laboratory";
+ dir = 1;
+ network = list("Research")
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGk" = (
+/obj/structure/table/standard,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGl" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/misc_lab)
+"bGm" = (
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Central Corridor - Camera 1";
+ dir = 4
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bGn" = (
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ icon_state = "direction_evac";
+ pixel_x = 0;
+ pixel_y = 36
+ },
+/obj/structure/sign/directions/cryo{
+ dir = 8;
+ icon_state = "direction_cryo";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bGo" = (
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ icon_state = "direction_eng";
+ pixel_x = 0;
+ pixel_y = 40
+ },
+/obj/structure/sign/directions/science{
+ dir = 8;
+ icon_state = "direction_sci";
+ pixel_x = 0;
+ 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;
+ icon_state = "direction_sec";
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ icon_state = "direction_med";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/sign/directions/com{
+ dir = 4;
+ icon_state = "direction_com";
+ pixel_y = 40
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bGq" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ layer = 2.85;
+ name = "hydroponics desk";
+ req_access = list(35)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/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{
+ icon_state = "rwindow";
+ 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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/main)
+"bGx" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/white,
+/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{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/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";
+ pixel_y = 0
+ },
+/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{
+ name = "Maintenance Access";
+ req_access = list(66)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/medical/surgeryobs)
+"bGF" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bGG" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/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/surgeryobs)
+"bGH" = (
+/obj/effect/floor_decal/corner/lime/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/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)
+"bGJ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/scalpel,
+/obj/item/weapon/circular_saw{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bGK" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bGL" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bGM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bGP" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bGQ" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bGR" = (
+/obj/machinery/vending/coffee,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/landmark/start{
+ name = "Xenobiologist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGT" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/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/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGU" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve,
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGV" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/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/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGW" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/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/mauve{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGX" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve,
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGY" = (
+/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"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bGZ" = (
+/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";
+ sortType = "Research"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHa" = (
+/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)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sleep/research)
+"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
+ },
+/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{
+ icon_state = "pipe-y";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bHd" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/telesci)
+"bHe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Xenobotany Maintenance";
+ req_access = list(55);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/rnd/xenobiology/xenoflora)
+"bHf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Division Maintenance";
+ req_access = list(47);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/rnd/misc_lab)
+"bHg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bHp" = (
+/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/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/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/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bHt" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bHv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Gardener"
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-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,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bHx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/ramp{
+ icon_state = "ramptop";
+ dir = 1
+ },
+/area/maintenance/bar)
+"bHy" = (
+/turf/simulated/wall,
+/area/medical/surgeryprep)
+"bHz" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/medical/surgeryprep)
+"bHA" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Pre/Post-OP";
+ req_access = list(66)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/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)
+"bHC" = (
+/obj/structure/table/standard,
+/obj/item/weapon/cautery,
+/obj/item/weapon/hemostat,
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24;
+ req_one_access = list(24,11,55)
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/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{
+ icon_state = "intact-supply";
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bHE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -64102,7 +51314,573 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/plating,
/area/maintenance/medbay)
-"ykd" = (
+"bHF" = (
+/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/medbay)
+"bHG" = (
+/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/medbay)
+"bHH" = (
+/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/medbay)
+"bHI" = (
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bHJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bHK" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bHL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHN" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHO" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHP" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHQ" = (
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHR" = (
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHS" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/drop{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sleep/research)
+"bHT" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/mauve/full,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bHU" = (
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research)
+"bHV" = (
+/obj/structure/table/standard,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/item/clothing/mask/gas,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bHW" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bHX" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bHY" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bHZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bIa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bIb" = (
+/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";
+ pixel_x = 0
+ },
+/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{
+ name = "Maintenance Access";
+ req_access = null;
+ req_one_access = list(12,66)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bId" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/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"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bIh" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bIi" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ icon_state = "door_closed";
+ name = "Hydroponics";
+ req_access = list(35)
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bIj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bIk" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/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{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bIm" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/pillbottles,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bIn" = (
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ departmentType = 2;
+ name = "Hydroponics Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bIo" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bIp" = (
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bIq" = (
+/obj/machinery/vending/hydroseeds{
+ prices = list();
+ restock_items = 1
+ },
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bIr" = (
+/obj/structure/table/standard,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIs" = (
+/obj/structure/table/standard,
+/obj/random/loot,
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIt" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bIu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/maintenance/bar)
+"bIv" = (
+/obj/structure/bed,
+/obj/item/weapon/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)
+"bIy" = (
+/obj/effect/floor_decal/corner/lime{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryobs)
+"bIz" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 4
+ },
+/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/windowtint{
+ id = "OR2";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access = list(66)
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bIC" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/item/device/radio{
+ anchored = 1;
+ broadcasting = 0;
+ canhear_range = 7;
+ frequency = 1487;
+ icon = 'icons/obj/items.dmi';
+ icon_state = "red_phone";
+ listening = 1;
+ name = "Surgery Emergency Phone";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/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.";
+ name = "Surgery Cleaner"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bID" = (
+/obj/structure/table/standard,
+/obj/item/weapon/bonesetter,
+/obj/item/weapon/bonegel,
+/obj/machinery/camera/network/medbay{
+ c_tag = "Medical - Operating Room 2";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bIE" = (
+/obj/structure/table/standard,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/FixOVein,
+/obj/machinery/vending/wallmed2{
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bIF" = (
+/obj/structure/table/standard,
+/obj/item/weapon/retractor,
+/obj/effect/floor_decal/corner/paleblue{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgerywing)
+"bIG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -64113,7 +51891,723 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/plating,
/area/maintenance/medbay)
-"yke" = (
+"bIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/meter{
+ name = "Scrubbers"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bIJ" = (
+/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);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sleep/research)
+"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/research{
+ name = "Miscellaneous Research Room";
+ req_one_access = list(7,29)
+ },
+/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)
+"bIO" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bIP" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bIQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bIR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/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"
+ },
+/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
+ },
+/obj/structure/disposalpipe/segment,
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bJb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bJc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bJd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sink/kitchen{
+ dir = 4;
+ icon_state = "sink_alt";
+ name = "hydroponics sink";
+ pixel_x = -20
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bJe" = (
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bJf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bJg" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/spraybottles,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bJh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bJi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bJj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bJk" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/fancy/vials,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bJl" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"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{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryprep)
+"bJp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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)
+"bJs" = (
+/obj/effect/decal/cleanable/generic,
+/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)
+"bJv" = (
+/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/loot,
+/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)
+"bJy" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJz" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJA" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJB" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/floor_decal/corner/mauve/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJC" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Telescience Lab";
+ departmentType = 2;
+ name = "Requests Console";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJD" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bJE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ status = 0
+ },
+/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{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bJI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Library";
+ departmentType = 1;
+ name = "Library Requests Console";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bJJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/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,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bJQ" = (
+/obj/machinery/door/airlock/glass,
+/obj/machinery/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/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/structure/flora/pottedplant/random,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bJT" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bJU" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bJV" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bJW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bJX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/table/standard,
+/obj/item/weapon/storage/toolbox/mechanical,
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bJZ" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bKa" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKb" = (
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Hydroponics Backroom";
+ req_access = list(35)
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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)
+"bKc" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bKe" = (
+/obj/machinery/vending/hydroseeds{
+ prices = list();
+ restock_items = 1
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/bar)
+"bKf" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bKg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bKh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -64127,55 +52621,304 @@
},
/turf/simulated/floor/tiled/white,
/area/medical/surgeryprep)
-"ykk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/obj/effect/floor_decal/corner/brown{
- icon_state = "corner_white";
- dir = 5
- },
-/obj/machinery/camera/network/mining{
- c_tag = "Mining - Locker Room"
- },
-/obj/structure/extinguisher_cabinet{
- pixel_y = 30
- },
-/turf/simulated/floor/tiled,
-/area/outpost/mining_main/eva)
-"ykl" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Cryogenics - Main Level";
- dir = 1
+"bKi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
},
/turf/simulated/floor/tiled/white,
-/area/crew_quarters/sleep/main)
-"ykq" = (
-/obj/structure/grille,
+/area/medical/surgeryprep)
+"bKj" = (
+/obj/machinery/door/airlock{
+ name = "Changing Room"
+ },
+/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;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgeryprep)
+"bKm" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKo" = (
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKp" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKq" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
icon_state = "rwindow";
dir = 1
},
-/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bKr" = (
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
- dir = 4
+ icon_state = "rwindow";
+ dir = 1
},
/turf/simulated/floor/plating,
-/area/hydroponics)
-"ykr" = (
-/obj/machinery/door/window/westright{
+/area/maintenance/medbay)
+"bKs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bKu" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bKv" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKw" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKy" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKz" = (
+/obj/machinery/button/remote/blast_door{
+ id = "telescience";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access = list(55)
+ },
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/corner/mauve/diagonal{
+ icon_state = "corner_white_diagonal";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKA" = (
+/obj/effect/floor_decal/corner/mauve/diagonal,
+/obj/effect/floor_decal/corner/mauve/diagonal{
+ icon_state = "corner_white_diagonal";
+ dir = 8
+ },
+/obj/machinery/computer/telescience{
+ starting_crystals = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKB" = (
+/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/mauve/diagonal,
+/obj/effect/floor_decal/corner/mauve/diagonal{
+ icon_state = "corner_white_diagonal";
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bKD" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/library)
+"bKE" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/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/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bKJ" = (
+/obj/machinery/door/window/westleft{
dir = 4;
- name = "Library Door";
+ name = "Library Desk";
req_access = list(37)
},
/obj/structure/table/wood,
-/obj/machinery/firealarm/north,
-/obj/machinery/librarycomp,
/turf/simulated/floor/wood,
/area/library)
-"yks" = (
+"bKK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bKL" = (
+/turf/simulated/floor/wood,
+/area/library)
+"bKM" = (
+/obj/machinery/door/firedoor{
+ enable_smart_generation = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"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
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bKO" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKP" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKQ" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKS" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/table/standard,
/obj/machinery/camera/network/civilian_main{
@@ -64185,7 +52928,204 @@
},
/turf/simulated/floor/tiled,
/area/hydroponics)
-"ykt" = (
+"bKT" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bKV" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bKW" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bKX" = (
+/obj/structure/reagent_dispensers/extinguisher,
+/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";
+ pixel_x = 0
+ },
+/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/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ 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/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bed/chair/wheelchair,
+/obj/item/weapon/extinguisher,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLd" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLe" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/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";
+ pixel_y = 0
+ },
+/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)
+"bLj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bLk" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Telescience"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bLl" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/red,
+/obj/item/device/eftpos{
+ eftpos_name = "Library EFTPOS scanner"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/library)
+"bLm" = (
+/obj/item/device/radio/headset/headset_service,
+/obj/structure/cult/tome,
+/obj/item/clothing/under/librarian,
+/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
@@ -64193,19 +53133,2232 @@
/obj/machinery/libraryscanner,
/turf/simulated/floor/wood,
/area/library)
-"ykw" = (
+"bLp" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced,
+/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 = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Aft Corridor - Camera 3";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bLv" = (
+/obj/machinery/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/primary/aft)
+"bLw" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bLx" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLy" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bLz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/biogenerator,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bLA" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLC" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Gardener"
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLE" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bLF" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLG" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ 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/tiled,
+/area/hydroponics)
+"bLH" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bLI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bLJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bLK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/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 = "Maintenance Access";
+ req_access = list(12)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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";
+ pixel_x = 0
+ },
+/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";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/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/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLQ" = (
+/obj/item/weapon/extinguisher,
+/obj/item/weapon/extinguisher{
+ pixel_x = 8
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLR" = (
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLT" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bLU" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(19)
+ },
+/obj/structure/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/maintenance/maintcentral)
+"bLV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/research_port)
+"bLW" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bLX" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bLY" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ icon_state = "pipe-y";
+ dir = 1
+ },
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bLZ" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bMa" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bMb" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"bMc" = (
+/obj/effect/floor_decal/corner/mauve{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/telesci)
+"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/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bMe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/library)
+"bMf" = (
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Library - North";
+ network = list("Service")
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bMg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/vending/hydroseeds{
+ prices = list();
+ restock_items = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bMh" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/dark,
+/area/hydroponics)
+"bMi" = (
+/obj/effect/floor_decal/corner/green,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMj" = (
+/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/hydroponics)
+"bMk" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/obj/item/weapon/reagent_containers/chem_disp_cartridge,
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMl" = (
+/obj/machinery/chemical_dispenser,
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMm" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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/green{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMo" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMp" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bMq" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled,
+/area/maintenance/bar)
+"bMr" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting equipment";
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bMs" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintance";
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bMt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/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/maintcentral)
+"bMv" = (
+/obj/structure/closet,
+/obj/item/clothing/head/ushanka,
+/obj/machinery/light/small/emergency{
+ icon_state = "bulb1";
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bMw" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/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);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/rnd/telesci)
+"bMz" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "telescience";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/rnd/telesci)
+"bMA" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "telescience";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northleft,
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/reinforced,
+/area/rnd/telesci)
+"bMB" = (
+/obj/structure/grille,
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ icon_state = "phoronrwindow";
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "telescience";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/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)
+"bMC" = (
/obj/structure/table/wood,
/obj/machinery/librarypubliccomp{
pixel_y = 8
},
/turf/simulated/floor/wood,
/area/library)
-"ykx" = (
+"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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/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;
+ icon_state = "door_closed";
+ name = "Library"
+ },
+/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,
+/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{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bML" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMN" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-scrubbers";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ 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{
+ icon_state = "map-scrubbers";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bMS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/bed/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/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/item/weapon/storage/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/hydrant{
+ pixel_x = -32
+ },
+/obj/structure/reagent_dispensers/extinguisher,
+/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)
+"bMZ" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/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/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNc" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb2,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNd" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 2;
+ use_power = 1
+ },
+/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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/maintcentral)
+"bNg" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ icon_state = "up-supply";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ icon_state = "up-scrubbers";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "12-0"
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating{
+ roof_type = null
+ },
+/area/maintenance/maintcentral)
+"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)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bNk" = (
+/obj/machinery/camera/network/research{
+ c_tag = "Research - Telescience Test Chamber 02";
+ dir = 4;
+ network = list("Research")
+ },
+/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 01";
+ dir = 4;
+ network = list("Research")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/telesci)
+"bNn" = (
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bNo" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/simulated/floor/wood,
+/area/library)
+"bNp" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bNq" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/library)
+"bNr" = (
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/structure/bed/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/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{
+ icon_state = "rwindow";
+ 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)
+"bNx" = (
+/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/primary/aft)
+"bNy" = (
+/obj/structure/sign/directions/evac{
+ dir = 1;
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = 4
+ },
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ icon_state = "direction_med";
+ pixel_x = 32;
+ pixel_y = -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)
+"bNA" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Hydroponics - West";
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bNB" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bNC" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/status_display{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -26
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bND" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"bNE" = (
+/obj/machinery/disposal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bNF" = (
+/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/hydroponics)
+"bNG" = (
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/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/hydroponics)
+"bNH" = (
+/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/multi_tile/glass{
+ dir = 2;
+ icon_state = "door_closed";
+ name = "Hydroponics";
+ req_access = list(35)
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bNI" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ 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/hydroponics)
+"bNJ" = (
+/obj/effect/floor_decal/corner/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
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bNK" = (
+/obj/effect/floor_decal/corner/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{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bNL" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hydroponics)
+"bNM" = (
+/obj/effect/floor_decal/corner/green/full{
+ icon_state = "corner_white_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)
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bNO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bNP" = (
+/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";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bNQ" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/weapon/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/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;
+ icon_state = "twindow"
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4;
+ icon_state = "twindow"
+ },
+/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;
+ icon_state = "twindow"
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4;
+ icon_state = "twindow"
+ },
+/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/generic,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bNZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bOa" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ 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/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{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/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{
+ icon_state = "bulb1";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bOj" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bOk" = (
+/obj/structure/bed/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)
-"yky" = (
+"bOn" = (
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/structure/bed/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bOq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"bOr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window{
+ dir = 1;
+ req_one_access = list(35)
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ icon_state = "left";
+ req_one_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/hydroponics)
+"bOs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/smartfridge/secure,
+/turf/simulated/floor/tiled/white,
+/area/hydroponics)
+"bOt" = (
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"bOu" = (
+/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";
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"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;
+ icon_state = "twindow"
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4;
+ icon_state = "twindow"
+ },
+/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;
+ layer = 3.3;
+ master_tag = "brig_solar_inner";
+ name = "interior access button";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bOC" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/telesci)
+"bOD" = (
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/telesci)
+"bOE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bOF" = (
+/obj/machinery/bookbinder,
+/turf/simulated/floor/wood,
+/area/library)
+"bOG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bOH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ 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,
+/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/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/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bOP" = (
+/turf/simulated/wall,
+/area/hallway/primary/aft)
+"bOQ" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOR" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOS" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOT" = (
+/obj/structure/table/stone/marble,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/appliance/mixer/candy{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOU" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOV" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOW" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOX" = (
+/obj/structure/table/stone/marble,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/microwave{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOY" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/appliance/mixer/cereal{
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOZ" = (
+/obj/machinery/chem_master/condimaster,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPa" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPb" = (
+/obj/structure/table/stone/marble,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPc" = (
+/obj/structure/closet/crate/freezer,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bPd" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bPe" = (
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bPf" = (
+/obj/structure/plasticflaps/airtight,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/freezer_maint{
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"bPg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/medical,
+/turf/simulated/floor/tiled,
+/area/maintenance/medbay)
+"bPh" = (
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 8;
+ icon_state = "twindow"
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4;
+ icon_state = "twindow"
+ },
+/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/weapon/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{
+ dir = 2
+ },
+/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)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/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/random/toolbox,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/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)
+"bPo" = (
+/obj/structure/table/standard,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bPp" = (
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/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/weapon/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{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bPu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/liquid_fuel,
+/turf/simulated/floor/plating,
+/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{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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/weapon/storage/pill_bottle/dice/gaming,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/simulated/floor/carpet,
+/area/library)
+"bPy" = (
+/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
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bPz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bPA" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPE" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/item/weapon/material/knife/butch,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPF" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bPG" = (
+/obj/machinery/gibber,
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"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{
+ frequency = 1379;
+ 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{
+ frequency = 1379;
+ 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/asteroid/ash/rocky,
+/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/white,
+/area/maintenance/research_port)
+"bPM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/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/machinery/firealarm/north,
+/turf/simulated/floor/wood,
+/area/library)
+"bPP" = (
+/obj/structure/bookcase/libraryspawn/adult,
+/turf/simulated/floor/wood,
+/area/library)
+"bPQ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/disposalpipe/segment,
@@ -64216,7 +55369,101 @@
},
/turf/simulated/floor/carpet,
/area/library)
-"ykz" = (
+"bPR" = (
+/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/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bPU" = (
+/obj/structure/table/wood,
+/obj/item/weapon/deck/cards,
+/obj/item/weapon/deck/holder,
+/obj/item/weapon/deck/tarot,
+/turf/simulated/floor/carpet,
+/area/library)
+"bPV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/button/remote/blast_door{
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters Control";
+ pixel_x = -32;
+ pixel_y = 0;
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPW" = (
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPX" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/reagent_containers/glass/beaker/bowl,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPY" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bPZ" = (
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQb" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQc" = (
+/obj/structure/reagent_dispensers/cookingoil,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bQd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
@@ -64225,7 +55472,7 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykA" = (
+"bQe" = (
/obj/structure/kitchenspike,
/obj/machinery/alarm/cold{
dir = 8;
@@ -64241,7 +55488,172 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykB" = (
+"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)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/medbay)
+"bQh" = (
+/obj/effect/decal/cleanable/generic,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bQi" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bQj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/loot,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bQk" = (
+/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)
+"bQl" = (
+/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/decal/cleanable/liquid_fuel,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bQm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bQn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bQo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/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)
+"bQt" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/aft)
+"bQu" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/smartfridge/foodheater,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQw" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/material/knife,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQx" = (
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/camera/network/civilian_main{
c_tag = "Kitchen - East";
@@ -64256,7 +55668,14 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykC" = (
+"bQy" = (
+/obj/machinery/icecream_vat,
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bQz" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -64266,7 +55685,7 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykD" = (
+"bQA" = (
/obj/structure/kitchenspike,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
@@ -64276,7 +55695,131 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykE" = (
+"bQB" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bQC" = (
+/obj/structure/table/reinforced/steel,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white,
+/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/white,
+/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{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bQI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bQK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/library)
+"bQL" = (
+/obj/machinery/door/airlock{
+ name = "Adult Section"
+ },
+/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{
+ icon_state = "intact-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{
+ pixel_y = -32
+ },
+/obj/machinery/vending/battlemonsters,
+/turf/simulated/floor/wood,
+/area/library)
+"bQR" = (
+/obj/machinery/photocopier,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/library)
+"bQS" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/item/device/radio/intercom{
+ pixel_y = -26
+ },
+/turf/simulated/floor/wood,
+/area/library)
+"bQT" = (
/obj/machinery/lapvend,
/obj/machinery/alarm{
dir = 1;
@@ -64289,7 +55832,66 @@
},
/turf/simulated/floor/wood,
/area/library)
-"ykF" = (
+"bQU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bQV" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/red/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/aft)
+"bQW" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/item/toy/figure/chef,
+/obj/machinery/ringer_button{
+ id = "kitchen_ringer";
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQX" = (
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQY" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/material/kitchen/rollingpin,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bQZ" = (
+/obj/structure/table/stone/marble,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRa" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRb" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
name = "Kitchen";
@@ -64304,7 +55906,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykH" = (
+"bRc" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -64317,7 +55919,7 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykI" = (
+"bRd" = (
/obj/structure/plasticflaps/airtight,
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
@@ -64335,7 +55937,7 @@
},
/turf/simulated/floor/tiled/freezer,
/area/crew_quarters/kitchen)
-"ykJ" = (
+"bRe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -64350,7 +55952,7 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykK" = (
+"bRf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -64367,14 +55969,364 @@
temperature = 278
},
/area/crew_quarters/kitchen)
-"ykL" = (
+"bRg" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer{
+ name = "cold storage tiles";
+ temperature = 278
+ },
+/area/crew_quarters/kitchen)
+"bRh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-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/bar)
+"bRi" = (
+/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";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bRj" = (
+/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";
+ pixel_x = 0
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bRk" = (
+/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";
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bRl" = (
+/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)
+"bRm" = (
+/obj/item/stack/tile/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bRn" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bRo" = (
+/turf/simulated/floor/tiled/white,
+/area/maintenance/research_port)
+"bRp" = (
+/obj/item/stack/tile/floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bRq" = (
+/obj/structure/table/rack,
+/obj/random/loot,
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bRr" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bRs" = (
+/obj/structure/barricade,
+/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)
+ },
+/turf/simulated/floor/plating,
+/area/library)
+"bRu" = (
+/obj/machinery/computer/guestpass{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bRv" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRw" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/table/stone/marble,
+/obj/item/weapon/storage/box/produce,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRx" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/table/stone/marble,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRy" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/grey/diagonal,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykM" = (
+"bRz" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/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{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/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";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bRD" = (
+/obj/structure/closet,
+/obj/random/loot,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bRE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Library";
+ sortType = "Library"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bRF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bRG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bRH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/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";
+ pixel_x = 0
+ },
+/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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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{
+ name = "Maintenance Access";
+ req_access = null;
+ req_one_access = list(12,66)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/library)
+"bRN" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/aft)
+"bRO" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/corner/grey/diagonal,
@@ -64383,7 +56335,228 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykN" = (
+"bRS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRT" = (
+/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/kitchen)
+"bRU" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRV" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bRW" = (
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bRX" = (
+/obj/random/junk,
+/turf/simulated/floor/carpet,
+/area/maintenance/bar)
+"bRY" = (
+/turf/simulated/floor/carpet,
+/area/maintenance/bar)
+"bRZ" = (
+/obj/item/clothing/mask/gas/clown_hat,
+/obj/item/clothing/shoes/clown_shoes,
+/obj/item/clothing/under/rank/clown,
+/obj/item/weapon/storage/backpack/clown,
+/obj/item/toy/figure/clown,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSa" = (
+/obj/item/clothing/head/soft/mime,
+/obj/item/clothing/mask/gas/mime,
+/obj/item/clothing/shoes/mime,
+/obj/item/clothing/under/mime,
+/obj/item/toy/figure/mime,
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSb" = (
+/obj/item/weapon/bedsheet/clown,
+/obj/structure/bed,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/tiled/white,
+/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)
+"bSg" = (
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bSh" = (
+/turf/simulated/wall,
+/area/chapel/office)
+"bSi" = (
+/turf/simulated/wall,
+/area/chapel/main)
+"bSj" = (
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bSk" = (
+/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/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bSl" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/hallway/primary/aft)
+"bSm" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenshutters01";
+ name = "Kitchen Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSn" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Kitchen";
+ departmentType = 1;
+ name = "Kitchen Requests Console";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSo" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/ringer{
+ department = "Kitchen";
+ id = "kitchen_ringer";
+ pixel_x = 0;
+ pixel_y = -30;
+ req_access = list(28)
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSp" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -64409,7 +56582,354 @@
},
/turf/simulated/floor/tiled/white,
/area/crew_quarters/kitchen)
-"ykO" = (
+"bSq" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ 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/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSr" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ 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,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSs" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ icon_state = "pipe-y";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/machinery/button/remote/blast_door{
+ id = "kitchenshutters02";
+ name = "Kitchen Shutters Control";
+ pixel_x = 0;
+ pixel_y = -32;
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSu" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bSx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(28)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"bSy" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bSz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSA" = (
+/obj/structure/closet{
+ icon_closed = "cabinet_closed";
+ icon_opened = "cabinet_open";
+ icon_state = "cabinet_closed"
+ },
+/obj/effect/landmark/costume/imperium_monk,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSB" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bSC" = (
+/obj/structure/crematorium{
+ _wifi_id = "chapel_crema"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"bSD" = (
+/obj/machinery/button/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{
+ icon_state = "morgue1";
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/office)
+"bSF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bSG" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/ramp/bottom{
+ icon_state = "rampbot";
+ dir = 8
+ },
+/area/chapel/main)
+"bSH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bSI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bSJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bSK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bSL" = (
+/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/chapel/main)
+"bSM" = (
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"bSN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"bSO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"bSP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchenshutters02";
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bSQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchenshutters02";
+ name = "Kitchen Shutters"
+ },
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bSR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/device/destTagger,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/packageWrap,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchenshutters02";
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bSS" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Kitchen";
+ req_access = list(28);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bST" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bSU" = (
+/turf/simulated/wall,
+/area/crew_quarters/locker/locker_toilet)
+"bSV" = (
+/obj/structure/curtain/black,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSW" = (
+/obj/structure/curtain/black,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bSX" = (
+/obj/effect/landmark/costume/pirate,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSY" = (
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bSZ" = (
+/obj/item/weapon/bedsheet/mime,
+/obj/structure/bed,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bTa" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ 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{
+ icon_state = "spline_fancy";
+ 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{
icon_state = "spline_fancy";
dir = 1
@@ -64421,14 +56941,165 @@
},
/turf/simulated/floor/wood,
/area/chapel/office)
-"ykP" = (
+"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)
+"bTf" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bTg" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bTh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bTi" = (
+/obj/structure/bed/chair/wood{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bTj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bTk" = (
+/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/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"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bTm" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bTn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/closet/secure_closet/bar,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bTo" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bTp" = (
+/obj/structure/closet/gmcloset,
+/obj/item/weapon/flame/lighter/zippo,
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 1;
+ name = "Bar Requests Console";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bTq" = (
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/coffeemaster/full{
+ pixel_y = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bTr" = (
/obj/machinery/chemical_dispenser/bar_soft/full{
pixel_y = 5
},
/obj/structure/table/wood,
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"ykQ" = (
+"bTs" = (
+/obj/structure/table/wood,
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ pixel_y = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm/north,
+/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/light{
dir = 1
@@ -64453,7 +57124,639 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"ykR" = (
+"bTw" = (
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder{
+ pixel_y = 12
+ },
+/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{
+ icon_state = "rwindow";
+ 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,
+/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/atmospherics/unary/vent_pump/on,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Bar - Bathroom"
+ },
+/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"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bTE" = (
+/obj/structure/toilet{
+ icon_state = "toilet00";
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_unit_1";
+ name = "Door Bolt Control";
+ pixel_x = 5;
+ pixel_y = 25;
+ req_access = null;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bTF" = (
+/obj/effect/landmark/costume/gladiator,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bTG" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bTH" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bTI" = (
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bTJ" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bTK" = (
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bTL" = (
+/obj/machinery/button/windowtint{
+ id = "chapel";
+ pixel_x = -6;
+ pixel_y = 28
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/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/weapon/pen,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/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/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bTS" = (
+/turf/simulated/floor/tiled/dark,
+/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{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/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{
+ icon_state = "intact-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/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)
+ },
+/turf/simulated/floor/wood,
+/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/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Bar";
+ req_access = list(25)
+ },
+/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)
+"bUg" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bUh" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/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{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/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/item/weapon/stool/padded,
+/turf/simulated/floor/carpet,
+/area/maintenance/bar)
+"bUl" = (
+/obj/effect/landmark/costume/chicken,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bUm" = (
+/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)
+"bUn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bUo" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"bUp" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pen,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/weapon/nullrod/itembox,
+/turf/simulated/floor/carpet,
+/area/chapel/office)
+"bUq" = (
+/obj/structure/bed/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)
+ },
+/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)
+"bUv" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bUw" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bUy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Chapel"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/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"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bUB" = (
+/obj/machinery/light{
+ dir = 4;
+ status = 2
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bUC" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/packageWrap,
+/obj/item/weapon/book/manual/barman_recipes,
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bUD" = (
+/obj/structure/table/wood,
+/obj/item/weapon/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/weapon/storage/box/beanbags,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bUE" = (
/obj/machinery/camera/network/civilian_main{
c_tag = "Bar - Backroom";
dir = 1
@@ -64466,7 +57769,7 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ykS" = (
+"bUF" = (
/obj/structure/shotgun_rack/double{
pixel_x = -32;
pixel_y = 0;
@@ -64480,7 +57783,410 @@
},
/turf/simulated/floor/lino,
/area/crew_quarters/bar)
-"ykT" = (
+"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,
+/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"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bUL" = (
+/obj/structure/toilet{
+ icon_state = "toilet00";
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_unit_2";
+ name = "Door Bolt Control";
+ pixel_x = 5;
+ pixel_y = 25;
+ req_access = null;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bUM" = (
+/obj/effect/landmark/costume/commie,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bUN" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bUO" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 1;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/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)
+"bUT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/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)
+"bUV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bUW" = (
+/obj/structure/sign/double/barsign,
+/turf/simulated/wall,
+/area/crew_quarters/bar)
+"bUX" = (
+/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)
+"bUY" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barshutters01";
+ name = "Bar Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bUZ" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barshutters01";
+ name = "Bar Shutters"
+ },
+/obj/item/weapon/reagent_containers/food/drinks/teapot{
+ pixel_y = 7
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bVa" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barshutters01";
+ name = "Bar Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/rag,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bVb" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barshutters01";
+ name = "Bar Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/cakehat,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bVc" = (
+/obj/item/toy/figure/bartender,
+/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)
+"bVd" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barshutters01";
+ name = "Bar Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/matches,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bVe" = (
+/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)
+"bVf" = (
+/obj/machinery/smartfridge/drinks{
+ req_access = list(25,28)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/lino,
+/area/crew_quarters/bar)
+"bVg" = (
+/obj/effect/landmark/costume/plaguedoctor,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bVh" = (
+/obj/effect/landmark/costume/elpresidente,
+/obj/structure/table/rack,
+/turf/simulated/floor/wood,
+/area/maintenance/bar)
+"bVi" = (
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor/tiled,
+/area/maintenance/research_port)
+"bVj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Chapel Office";
+ sortType = "Chapel Office"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bVk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"bVl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chaplain Office's Maintenance";
+ req_one_access = list(22)
+ },
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
+"bVq" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bVr" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6;
+ icon_state = "spline_plain"
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"bVs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bVt" = (
+/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/dark,
+/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{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bVw" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/obj/machinery/computer/arcade/orion_trail,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bVx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 1
+ },
+/obj/machinery/computer/arcade/battle,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bVy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bVz" = (
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bVA" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bVB" = (
/obj/effect/floor_decal/spline/fancy/wood{
icon_state = "spline_fancy";
dir = 5
@@ -64509,7 +58215,194 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ykU" = (
+"bVC" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/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/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/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)
+"bVF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"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"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bVI" = (
+/obj/structure/toilet{
+ icon_state = "toilet00";
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "main_unit_3";
+ name = "Door Bolt Control";
+ pixel_x = 5;
+ pixel_y = 25;
+ req_access = null;
+ 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/weapon/storage/fancy/crayons,
+/turf/simulated/floor/wood,
+/area/chapel/office)
+"bVL" = (
+/obj/machinery/disposal,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/chapel/office)
+"bVM" = (
+/obj/machinery/firealarm/south,
+/turf/simulated/floor/wood,
+/area/chapel/office)
+"bVN" = (
+/obj/structure/flora/pottedplant/random,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/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{
+ icon_state = "spline_plain";
+ dir = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 2
+ },
+/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{
+ icon_state = "rampbot";
+ dir = 8
+ },
+/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
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bVR" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bVS" = (
/obj/structure/cable/green{
d1 = 4;
d2 = 8;
@@ -64525,7 +58418,508 @@
},
/turf/simulated/floor/tiled/dark,
/area/chapel/main)
-"ykV" = (
+"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/tiled/dark,
+/area/chapel/main)
+"bVU" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"bVV" = (
+/obj/machinery/door/airlock/glass{
+ name = "Diner"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/bar)
+"bVW" = (
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled/ramp/bottom{
+ icon_state = "rampbot";
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"bVX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ 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/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/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)
+"bWc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWd" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bWe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bWf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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{
+ pixel_x = -32
+ },
+/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 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bWj" = (
+/obj/machinery/door/airlock/glass{
+ name = "Diner"
+ },
+/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)
+"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{
+ icon_state = "rampbot";
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"bWl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ 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)
+"bWn" = (
+/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 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/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{
+ icon_state = "spline_fancy";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-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,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bWs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/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
+ },
+/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,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/bar)
+"bWv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12,25,66)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"bWw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bWx" = (
+/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";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled/ramp/bottom{
+ icon_state = "rampbot";
+ dir = 8
+ },
+/area/maintenance/bar)
+"bWy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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{
+ icon_state = "tube1";
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWD" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWE" = (
+/obj/machinery/firealarm/north,
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWF" = (
+/obj/item/modular_computer/console/preset/supply,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/ringer{
+ department = "Cargo";
+ id = "cargo_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ 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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWH" = (
+/obj/item/modular_computer/console/preset/supply,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWI" = (
+/obj/item/modular_computer/console/preset/supply,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/firealarm/north,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bWJ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/device/piano{
+ force_piano = 1;
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bWK" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/weapon/stool/padded,
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bWL" = (
/obj/effect/floor_decal/spline/fancy/wood{
icon_state = "spline_fancy";
dir = 8
@@ -64537,445 +58931,488 @@
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ykY" = (
-/obj/structure/bed/chair/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+"bWM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"ykZ" = (
-/obj/structure/bed/chair/wood,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"yla" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"ylb" = (
-/obj/structure/table/wood,
-/obj/item/weapon/flame/candle,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"ylc" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Bar -Theatre";
- dir = 8;
- network = list("Service")
- },
-/turf/simulated/floor/wood,
-/area/crew_quarters/bar)
-"ylg" = (
+"bWN" = (
/obj/structure/bed/chair/wood{
icon_state = "wooden_chair";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWO" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWP" = (
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWQ" = (
+/obj/structure/bed/chair/wood{
+ icon_state = "wooden_chair";
+ dir = 8
+ },
+/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{
+ icon_state = "spline_fancy";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bWU" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
dir = 1
},
/turf/simulated/floor/wood,
/area/crew_quarters/bar)
-"yli" = (
-/obj/machinery/computer/slot_machine,
-/turf/simulated/floor/tiled/dark,
+"bWV" = (
+/obj/structure/curtain/black,
+/turf/simulated/floor/tiled/ramp/bottom{
+ icon_state = "rampbot";
+ dir = 1
+ },
/area/crew_quarters/bar)
-"ylk" = (
-/obj/machinery/light/small{
+"bWW" = (
+/obj/machinery/light/small/emergency{
+ icon_state = "bulb1";
dir = 4
},
-/obj/machinery/computer/slot_machine,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/bar)
-"yll" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/bar)
-"ylm" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 32
- },
-/obj/machinery/firealarm/south,
-/obj/machinery/computer/slot_machine,
-/turf/simulated/floor/tiled/dark,
-/area/crew_quarters/bar)
-"yln" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/universal,
-/obj/machinery/meter{
- name = "Air supply"
- },
+/obj/structure/closet,
+/obj/random/loot,
/turf/simulated/floor/plating,
/area/maintenance/bar)
-"ylo" = (
-/obj/effect/floor_decal/corner/lime{
- dir = 10
+"bWX" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/research_port)
+"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{
+ icon_state = "corner_white";
+ dir = 8
},
/turf/simulated/floor/tiled,
-/area/hallway/primary/starboard)
-"ylq" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 9
- },
-/obj/structure/table/standard,
-/obj/machinery/ringer{
- department = "Chemistry";
- id = "chemistry_ringer";
- pixel_x = -30;
- pixel_y = 0;
- req_access = list(33)
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"yls" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/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/chair/office/dark{
dir = 4
},
-/obj/machinery/hologram/holopad,
-/obj/structure/disposalpipe/segment{
+/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{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "cargo_cockblock";
+ name = "Cargo";
+ opacity = 1
+ },
+/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/quartermaster/lobby)
+"bXh" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atm{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXi" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ylt" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ylu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ylv" = (
-/obj/effect/floor_decal/corner/paleblue{
- icon_state = "corner_white";
- dir = 9
+/obj/structure/window/reinforced{
+ dir = 1
},
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bXk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/alarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"ylw" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/table/standard,
-/obj/machinery/reagentgrinder,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ylx" = (
-/obj/effect/floor_decal/corner/mauve{
- icon_state = "corner_white";
- dir = 10
- },
-/obj/structure/closet/secure_closet/chemical,
-/obj/item/device/radio/headset/headset_med,
-/obj/item/device/radio/headset/headset_med,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/item/weapon/storage/box/pillbottles,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"yly" = (
-/obj/effect/floor_decal/corner/mauve/full{
- icon_state = "corner_white_full";
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
-/obj/structure/cable/green{
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bXl" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bXm" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bXn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXo" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXp" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/wood,
+/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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "cargo_cockblock";
+ name = "Cargo Shutters Control";
+ pixel_x = 0;
+ pixel_y = 0;
+ req_access = list(31)
+ },
+/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{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "cargo_cockblock";
+ name = "Cargo";
+ opacity = 1
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bXw" = (
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXx" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXz" = (
+/obj/effect/floor_decal/corner/brown,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"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/quartermaster/lobby)
+"bXB" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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;
+ icon_state = "spline_plain"
+ },
+/obj/structure/flora/pottedplant/random{
+ 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;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bXE" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXF" = (
+/obj/structure/bed/chair/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXG" = (
+/obj/structure/curtain/black,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXH" = (
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bXI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/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)
+"bXJ" = (
+/obj/structure/cable{
d1 = 1;
d2 = 8;
icon_state = "1-8"
},
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
},
-/turf/simulated/floor/tiled/white,
-/area/medical/chemistry)
-"ylz" = (
-/turf/simulated/wall/r_wall,
-/area/medical/reception)
-"ylA" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/sign/chemistry,
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "CHE2shutters";
- name = "Chemistry Window Shutters";
- opacity = 0
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 4
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 8
- },
-/obj/structure/window/phoronreinforced{
- icon_state = "phoronrwindow";
- dir = 1
- },
-/obj/structure/window/phoronreinforced,
-/turf/simulated/floor/plating,
-/area/medical/reception)
-"ylB" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "CHE3shutters";
- name = "Chemistry Desk Shutter";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/brigdoor/northright{
- name = "Chemistry Desk";
- req_access = list(33)
- },
-/obj/machinery/ringer_button{
- id = "chemistry_ringer";
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/structure/table/reinforced,
-/obj/structure/noticeboard{
- pixel_x = 32;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/reception)
-"ylJ" = (
-/obj/structure/sign/nosmoking_1{
- pixel_x = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"ylK" = (
-/obj/effect/floor_decal/corner/lime,
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"ylL" = (
-/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{
- icon_state = "rwindow";
- dir = 8
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/structure/sign/greencross,
-/turf/simulated/floor/plating,
-/area/medical/emt)
-"ylM" = (
-/obj/effect/floor_decal/corner/lime{
- icon_state = "corner_white";
- dir = 1
- },
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylN" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylO" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -24
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylP" = (
-/obj/structure/flora/pottedplant/random,
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylQ" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylR" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylS" = (
-/obj/structure/bed/chair{
- dir = 1
- },
-/obj/machinery/camera/network/medbay{
- c_tag = "Medical - Lobby 2";
- dir = 1
- },
-/obj/machinery/light{
- dir = 2;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/newscaster{
- pixel_y = -32
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylT" = (
-/obj/structure/flora/pottedplant/random,
-/obj/effect/floor_decal/corner/pink{
- icon_state = "corner_white";
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/medical/emt)
-"ylU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 4
- },
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- dir = 1
- },
-/obj/structure/window/reinforced,
-/obj/machinery/door/firedoor,
-/obj/structure/window/reinforced{
- icon_state = "rwindow";
- 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/emt)
-"ylV" = (
-/obj/machinery/camera/network/civilian_main{
- c_tag = "Central Corridor - Medical EMT Entrance";
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"ylW" = (
-/obj/structure/table/standard,
/obj/structure/disposalpipe/segment{
- dir = 2;
+ dir = 8;
icon_state = "pipe-c"
},
-/obj/item/roller{
- pixel_y = 4
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bXK" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
},
-/obj/item/roller{
- pixel_y = 4
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXL" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ylX" = (
-/obj/structure/sign/nosmoking_1{
- pixel_y = 32
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/disposalpipe/trunk,
-/obj/machinery/disposal,
-/obj/machinery/light{
- dir = 1
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ylY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/shutters{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "cargo_cockblock";
+ name = "Cargo";
+ opacity = 1
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bXN" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXO" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ylZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/structure/closet/secure_closet/medical_wall{
- name = "Stabilization Kit";
- pixel_x = 0;
- pixel_y = 32
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXP" = (
+/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/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/stack/medical/bruise_pack,
-/obj/item/weapon/storage/pill_bottle/tramadol,
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"yma" = (
/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/quartermaster/lobby)
+"bXR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -64986,59 +59423,5014 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/light_switch{
- pixel_x = 7;
- pixel_y = 28
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ymb" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "EMT Quarters";
- req_access = list(67)
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bXS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/machinery/door/firedoor,
+/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bXT" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ icon_state = "map-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{
+ icon_state = "rampbot";
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"bXV" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bXW" = (
+/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)
+"bXX" = (
+/turf/simulated/wall,
+/area/maintenance/substation/civilian_west)
+"bXY" = (
+/obj/machinery/light/small,
/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ymc" = (
-/obj/structure/disposalpipe/junction{
+/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/chair/office/dark,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYb" = (
+/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/quartermaster/lobby)
+"bYc" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYd" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYe" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYf" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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)
+"bYh" = (
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/ramp/bottom{
+ icon_state = "rampbot";
+ dir = 4
+ },
+/area/crew_quarters/bar)
+"bYi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYj" = (
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYk" = (
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Bar -Theatre";
+ dir = 8;
+ network = list("Service")
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYl" = (
+/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/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cargo)
+"bYm" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian (Main Level) Substation";
+ req_one_access = list(11,24)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/substation/civilian_west)
+"bYn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"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/weapon/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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYs" = (
+/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{
+ icon_state = "map-scrubbers";
dir = 8
},
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYv" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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 = "tube1";
+ pixel_x = 0
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bYy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYz" = (
+/obj/structure/bed/chair/wood{
+ icon_state = "wooden_chair";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10;
+ icon_state = "spline_plain"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYB" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYC" = (
+/turf/simulated/floor/tiled/ramp/bottom,
+/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";
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"bYE" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Civilian - Civilian Substation";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"bYF" = (
+/obj/machinery/power/smes/buildable{
+ charge = 0;
+ RCon_tag = "Substation - Civilian Main"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"bYG" = (
+/obj/item/weapon/storage/belt/utility,
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ name = "Cargo Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/item/weapon/tape_roll,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYH" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/papershredder,
+/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{
+ density = 1;
+ dir = 4;
+ icon_state = "shutter1";
+ id = "cargo_cockblock";
+ name = "Cargo";
+ opacity = 1
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bYJ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYK" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYL" = (
+/obj/machinery/firealarm/east,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bYM" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 1
+ },
/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ymd" = (
+/area/crew_quarters/bar)
+"bYN" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"bYO" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"bYP" = (
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Civilian (Main Level)";
+ name_tag = "Civilian (Main Level) Subgrid"
+ },
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"bYQ" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bYR" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "cargo_toup"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bYS" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ icon_state = "conveyor0";
+ id = "cargo_toup";
+ reversed = 1
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bYT" = (
+/obj/machinery/newscaster{
+ pixel_x = -27;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/effect/floor_decal/corner/brown/full,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYV" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bYW" = (
+/obj/machinery/door/firedoor/multi_tile,
+/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/quartermaster/lobby)
+"bYX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor{
+ enable_smart_generation = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bYY" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 10
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bYZ" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bZa" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bZb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ icon_state = "spline_fancy";
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/bar)
+"bZc" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"bZd" = (
+/obj/machinery/computer/slot_machine,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"bZe" = (
+/obj/structure/table/rack,
+/obj/random/loot,
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"bZf" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/wall,
+/area/maintenance/substation/civilian_west)
+"bZg" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Civilian (Main Level) Substation";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/civilian_west)
+"bZh" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/wall,
+/area/quartermaster/lobby)
+"bZi" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargo_toup"
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/quartermaster/lobby)
+"bZj" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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{
+ icon_state = "map-scrubbers";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bZo" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/large_stock_marker,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bZp" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"bZr" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/bar)
+"bZs" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZt" = (
+/obj/structure/table/wood,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZu" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZv" = (
+/obj/structure/table/wood,
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZw" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/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{
+ department = "Cargo";
+ id = "cargo_ringer";
+ pixel_x = 0;
+ pixel_y = 30;
+ req_access = list(31)
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/large_stock_marker,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bZB" = (
+/obj/machinery/camera/network/supply{
+ c_tag = "Warehouse - North"
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ name = "Sorting Office";
+ no_override = 1;
+ sort_tag = "Sorting Office"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"bZC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/large_stock_marker,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_y = 32
+ },
+/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{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/firealarm/west,
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/item/device/destTagger,
+/obj/item/weapon/pen,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/wrapping_paper,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bZF" = (
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bZG" = (
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "map-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{
+ icon_state = "corner_white";
+ 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_access = null;
+ req_one_access = list(31,48)
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ 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/quartermaster/lobby)
+"bZN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/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{
+ icon_state = "map-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;
+ status = 2
+ },
+/obj/effect/large_stock_marker,
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"bZQ" = (
+/obj/structure/table/standard,
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/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/table/wood,
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZT" = (
+/obj/structure/table/wood,
+/obj/machinery/camera/network/civilian_main{
+ c_tag = "Bar - Booths";
+ dir = 1
+ },
+/obj/item/weapon/flame/candle,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/bar)
+"bZU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 32
+ },
+/obj/machinery/firealarm/south,
+/obj/machinery/computer/slot_machine,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/bar)
+"bZV" = (
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bZW" = (
+/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/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/effect/decal/cleanable/dirt,
+/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{
+ icon_state = "warningcorner";
+ 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"
+ },
+/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/lobby)
+"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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/lobby)
+"caf" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Equipment Storage";
+ req_access = list(31)
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown,
+/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{
+ icon_state = "corner_white_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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-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{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/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/weapon/packageWrap,
+/obj/item/weapon/packageWrap,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/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{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"car" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(12,25,66)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/bar)
+"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/machinery/button/remote/blast_door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access = list(31)
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cay" = (
+/obj/machinery/button/remote/blast_door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access = list(31)
+ },
+/obj/effect/floor_decal/corner/brown/full,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/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{
+ icon_state = "corner_white_full";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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_access = null;
+ req_one_access = list(31,48)
+ },
+/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)
+"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)
+ },
+/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
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"caI" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"yme" = (
+/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{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/aft)
+"caK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = null;
+ req_one_access = list(12,66)
+ },
+/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{
+ icon_state = "pipe-j1";
+ 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;
+ icon_state = "pipe-j1s";
+ 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"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/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{
+ icon_state = "rampbot";
+ 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)
+"caX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"caY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch{
+ pixel_x = 32
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"caZ" = (
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/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{
+ icon_state = "corner_white";
+ 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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/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;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/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";
+ pixel_x = 0
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/disposal)
+"cbj" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Disposals Maintenance";
+ req_one_access = list(12,50)
+ },
+/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";
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"cbk" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/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";
+ pixel_y = 0
+ },
+/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/decal/cleanable/dirt,
+/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)
+"cbp" = (
+/obj/effect/decal/cleanable/dirt,
+/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_access = list(31)
+ },
+/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{
+ icon_state = "pipe-y";
+ 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/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/mail_room)
+"cbA" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/mail_room)
+"cbB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm/north,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/mail_room)
+"cbC" = (
+/obj/structure/table/standard,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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{
+ pixel_y = 22
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/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/dark,
+/area/maintenance/disposal)
+"cbJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/disposal)
+"cbK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled/dark,
+/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";
+ pixel_y = 0
+ },
+/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)
+"cbN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cbO" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cbP" = (
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"cbQ" = (
+/turf/simulated/wall,
+/area/maintenance/cargo)
+"cbR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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/cargo)
+"cbS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cbT" = (
+/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,
+/area/quartermaster/storage)
+"cbU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cbV" = (
+/obj/structure/bed/chair/office/dark,
+/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/structure/table/standard,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/simulated/floor/carpet,
+/area/quartermaster/break_room)
+"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
+ },
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ 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{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/disposal)
+"cci" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/disposal)
+"ccj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/disposal)
+"cck" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/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";
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccm" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccn" = (
+/obj/structure/disposalpipe/up{
+ icon_state = "pipe-u";
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "12-0"
+ },
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/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/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/meter{
+ name = "Scrubbers"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/meter{
+ name = "Air supply"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccs" = (
+/obj/structure/barricade,
+/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/decal/cleanable/dirt,
+/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
},
+/obj/effect/decal/cleanable/dirt,
+/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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/machinery/firealarm/west,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 32
+ },
+/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/weapon/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{
+ icon_state = "corner_white";
+ 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/dark,
-/area/medical/emt)
-"ymf" = (
+/area/maintenance/disposal)
+"ccH" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/disposal)
+"ccI" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/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/dark,
+/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{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/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{
+ icon_state = "map-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{
+ icon_state = "rampbot";
+ 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/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/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{
+ icon_state = "intact-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/supply{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ccS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/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/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ccW" = (
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/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/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/weapon/packageWrap,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "bulb1";
+ 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,
+/turf/simulated/floor/tiled/dark,
+/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/dark,
-/area/medical/emt)
-"ymg" = (
+/area/maintenance/disposal)
+"cdh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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,
+/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{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cdo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/network/supply{
+ c_tag = "Cargo - Main 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/small{
+ dir = 8
+ },
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/break_room)
+"cds" = (
+/turf/simulated/floor/carpet,
+/area/quartermaster/break_room)
+"cdt" = (
+/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/break_room)
+"cdu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/standard,
+/obj/item/weapon/packageWrap,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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/dark,
+/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{
+ icon_state = "bulb1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/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)
+ },
+/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/maintenance/cargo)
+"cdC" = (
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2";
+ pixel_y = 0
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/break_room)
+"cdE" = (
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/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{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/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/small,
+/turf/simulated/floor/tiled,
+/area/quartermaster/break_room)
+"cdJ" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave{
+ pixel_y = 6
+ },
+/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/weapon/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{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/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{
+ 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{
+ icon_state = "corner_white_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/dark,
+/area/maintenance/disposal)
+"cdQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled/dark,
+/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)
+"cdU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/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{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/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)
+"cdY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/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_access = null;
+ req_one_access = list(31,48)
+ },
+/obj/machinery/door/firedoor,
+/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)
+ },
+/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/dark,
+/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/dark,
+/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/dark,
+/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/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/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)
+ },
+/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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ 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;
+ icon_state = "pipe-j1s";
+ 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{
+ icon_state = "corner_white";
+ 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)
+ },
+/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{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cev" = (
+/obj/structure/track{
+ icon_state = "track12"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cew" = (
+/obj/structure/track{
+ icon_state = "track12"
+ },
+/obj/machinery/light/spot/weak{
+ icon_state = "tube_empty";
+ dir = 1
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cex" = (
+/obj/structure/track{
+ icon_state = "track10"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/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_access = null;
+ req_one_access = list(31,48)
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"ceB" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Mining Processing Hatch";
+ req_access = list(48)
+ },
+/obj/machinery/door/firedoor,
+/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{
+ icon_state = "intact-scrubbers";
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ceD" = (
+/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/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ceE" = (
+/obj/structure/disposalpipe/tagger/partial{
+ dir = 8;
+ icon_state = "pipe-tagger-partial";
+ 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
+ },
+/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{
+ pixel_y = 22
+ },
+/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{
+ icon_state = "intact-supply";
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ icon_state = "intact-scrubbers";
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/bar)
+"ceM" = (
+/obj/structure/track{
+ icon_state = "track3"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"ceN" = (
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"ceO" = (
+/obj/structure/track{
+ icon_state = "track3"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"ceP" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"ceQ" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"ceR" = (
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"ceS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/camera/network/mining{
+ c_tag = "Mining - Locker Room"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/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{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"ceU" = (
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_full";
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"ceV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "loadingarea";
+ dir = 8
+ },
+/obj/machinery/mineral/stacking_unit_console{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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/mineral/output,
+/obj/machinery/door/firedoor,
+/obj/structure/plasticflaps,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"ceY" = (
+/obj/machinery/mineral/stacking_machine,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"ceZ" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining_internal"
+ },
+/obj/machinery/mineral/input,
+/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;
+ icon_state = "conveyor0";
+ 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/simulated/floor/asteroid/ash/rocky,
+/area/mine/unexplored)
+"cfe" = (
+/obj/structure/track{
+ icon_state = "track12"
+ },
+/turf/simulated/floor/asteroid/ash/rocky,
+/area/mine/unexplored)
+"cff" = (
+/obj/structure/track{
+ icon_state = "track13"
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfg" = (
+/obj/vehicle/train/cargo/engine/mining{
+ icon_state = "mining_engine";
+ dir = 2
+ },
+/obj/structure/track{
+ icon_state = "track12"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfh" = (
+/obj/vehicle/train/cargo/trolley/mining,
+/obj/structure/track{
+ icon_state = "track12"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfi" = (
+/obj/structure/track{
+ icon_state = "track9"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfj" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfk" = (
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfl" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/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;
+ icon_state = "map"
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 4;
+ status = 0
+ },
+/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/disposalpipe/segment,
-/turf/simulated/floor/tiled/white,
-/area/medical/medbay)
-"ymh" = (
-/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
-/area/hallway/primary/central_one)
-"ymi" = (
+/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{
+ icon_state = "loadingarea";
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cfr" = (
+/obj/machinery/mineral/output,
+/obj/machinery/conveyor{
+ dir = 9;
+ icon_state = "conveyor0";
+ id = "mining_internal";
+ reversed = 1
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfs" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "mining_internal"
+ },
+/obj/machinery/mineral/output,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cft" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 4
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfu" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 10
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/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)
+"cfw" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 8
+ },
+/obj/structure/ore_box{
+ icon_state = "orebox1"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfx" = (
+/obj/structure/ore_box{
+ icon_state = "orebox1"
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfy" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfz" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/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;
+ icon_state = "map"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfB" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "map_scrubber_on";
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -32
+ },
+/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{
+ dir = 2
+ },
/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfH" = (
+/obj/machinery/mineral/processing_unit,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfI" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfJ" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfK" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfL" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/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/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/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,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfP" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cfQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cfR" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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_access = list(48)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cfT" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 5
+ },
+/obj/machinery/mineral/equipment_vendor,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cfU" = (
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/obj/machinery/mineral/equipment_vendor,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cfV" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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/mineral/input,
+/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{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/obj/machinery/light/spot/weak{
+ icon_state = "tube_empty";
+ dir = 4
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cfY" = (
+/obj/machinery/recharge_station,
+/obj/machinery/firealarm/west,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cfZ" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/item/hoist_kit,
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/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,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgb" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/weapon/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/weapon/shovel{
+ pixel_x = -5
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/turf/simulated/floor/tiled,
+/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{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgd" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ pixel_y = 22
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/camera/network/mining{
+ c_tag = "Mining - Production Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cgi" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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/mineral/output,
+/obj/machinery/door/firedoor,
+/obj/structure/plasticflaps,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cgk" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "mining_east_airlock";
+ name = "exterior access button";
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"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{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgm" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 2;
+ frequency = 1379;
+ id_tag = "mining_east_pump"
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/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{
+ dir = 2;
+ frequency = 1379;
+ id_tag = "mining_east_pump"
+ },
+/obj/structure/closet/walllocker/emerglocker/north,
+/obj/effect/decal/cleanable/dirt,
+/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{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgp" = (
+/obj/effect/floor_decal/corner/brown/full{
+ icon_state = "corner_white_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{
+ icon_state = "corner_white";
+ 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
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgt" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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/outpost/mining_main/eva)
+"cgu" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cgA" = (
+/obj/machinery/mineral/unloading_machine,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"cgB" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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)
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8;
+ icon_state = "map"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgD" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgE" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "mining_east_inner";
+ locked = 1;
+ name = "Mining External Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgF" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "mining_east_airlock";
+ name = "interior access button";
+ pixel_x = -27;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1;
+ icon_state = "map"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/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;
+ icon_state = "intact"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgJ" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgK" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_x = 0
+ },
+/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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white_full";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cgO" = (
+/obj/machinery/mineral/input,
+/obj/effect/floor_decal/industrial/loading{
+ icon_state = "loadingarea";
+ 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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ 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{
icon_state = "rwindow";
@@ -65052,26 +64444,922 @@
icon_state = "rwindow";
dir = 1
},
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
/turf/simulated/floor/plating,
-/area/medical/emt)
-"ymj" = (
-/obj/structure/bed/chair/office/light{
+/area/outpost/mining_main/refinery)
+"cgS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
-"ymk" = (
-/obj/structure/bed/chair/office/light{
- dir = 8
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor{
+ dir = 2
},
-/obj/item/device/radio/intercom{
- dir = 1;
- name = "Station Intercom (General)";
+/obj/structure/sign/drop,
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgT" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ tag_airpump = "mining_east_pump";
+ tag_exterior_door = "mining_east_outer";
+ frequency = 1379;
+ id_tag = "mining_east_airlock";
+ tag_interior_door = "mining_east_inner";
pixel_x = 0;
- pixel_y = -24
+ pixel_y = -25;
+ tag_chamber_sensor = "mining_east_sensor"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "mining_east_pump"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgU" = (
+/obj/machinery/airlock_sensor{
+ frequency = 1379;
+ id_tag = "mining_east_sensor";
+ master_tag = "mining_east_airlock";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id_tag = "mining_east_pump"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cgV" = (
+/obj/effect/floor_decal/corner/brown/full,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/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{
+ icon_state = "warningcee";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"cgX" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ icon_state = "warningcee";
+ 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
+ },
+/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{
+ dir = 2
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/structure/noticeboard{
+ pixel_y = 27
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"che" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"chf" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/alarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"chg" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"chh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"chi" = (
+/obj/structure/table/standard,
+/obj/item/device/suit_cooling_unit/improved,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/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{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"chk" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "warning_dust";
+ dir = 8
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chn" = (
+/obj/structure/sign/drop,
+/turf/simulated/wall,
+/area/outpost/mining_main/eva)
+"cho" = (
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/machinery/camera/network/mining{
+ c_tag = "Mining - Suit Storage";
+ dir = 4
+ },
+/obj/machinery/firealarm/west,
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chv" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"chx" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 4
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chy" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ icon_state = "warning_dust";
+ dir = 1
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chz" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ icon_state = "warningcorner_dust";
+ dir = 1
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chA" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/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{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"chC" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/corner/blue{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/machinery/requests_console{
+ department = "Mining";
+ departmentType = 2;
+ name = "Mining Requests Console";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chJ" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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{
+ icon_state = "rwindow";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/refinery)
+"chL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ dir = 4
+ },
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/outpost/mining_main/eva)
+"chM" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 9
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen/blue,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chP" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chQ" = (
+/obj/structure/bed/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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"chS" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ icon_state = "rwindow";
+ 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{
+ icon_state = "warning_dust";
+ dir = 6
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chV" = (
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver,
+/obj/item/weapon/crowbar,
+/obj/structure/table/reinforced/steel,
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chW" = (
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/structure/table/reinforced/steel,
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"chX" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/reinforced/steel,
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/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{
+ dir = 2
+ },
+/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{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/eva)
+"cib" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow{
+ icon_state = "corner_white";
+ 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)
+"cid" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ 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{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/item/weapon/packageWrap,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cif" = (
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/machinery/camera/network/mining{
+ c_tag = "Mining - Office";
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cig" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/item/weapon/hand_labeler,
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cih" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown{
+ icon_state = "corner_white";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/outpost/mining_main/refinery)
+"cii" = (
+/obj/machinery/door/firedoor{
+ dir = 2
+ },
+/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{
+ dir = 2
+ },
+/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{
+ dir = 2
+ },
+/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{
+ dir = 2
+ },
+/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{
+ dir = 2
+ },
+/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{
+ tag = "icon-warning_dust (SOUTHWEST)";
+ icon_state = "warning_dust";
+ dir = 10
+ },
+/turf/simulated/floor/airless{
+ icon_state = "asteroidplating"
+ },
+/area/outpost/mining_main/eva)
+"cio" = (
+/turf/simulated/floor/asteroid/ash/rocky,
+/area/skipjack_station/cavern)
+"cip" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Access";
+ req_access = list(12)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/civ)
+"ciq" = (
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/hand_tele,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"cir" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/reinforced/steel,
+/obj/structure/window/reinforced{
+ dir = 8
},
/turf/simulated/floor/tiled/dark,
-/area/medical/emt)
+/area/security/nuke_storage)
+"cis" = (
+/obj/machinery/computer/guestpass{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"cit" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 24
+ },
+/obj/structure/flora/pottedplant/random,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/starboard)
+"ciu" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"civ" = (
+/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/security_starboard)
+"ciw" = (
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/security_starboard)
(1,1,1) = {"
aaa
@@ -69033,9 +69321,9 @@ aaa
aaa
aaa
aaa
-arK
+asq
aaa
-arK
+asq
aaa
aaa
aaa
@@ -69289,11 +69577,11 @@ aaa
aaa
aaa
aaa
-agZ
-agZ
-agZ
-agZ
-agZ
+ahi
+ahi
+ahi
+ahi
+ahi
aaa
aaa
aaa
@@ -69545,13 +69833,13 @@ aaa
aaa
aaa
aaa
-arK
-agZ
-auI
-awn
-auI
-agZ
-arK
+asq
+ahi
+avp
+awV
+avp
+ahi
+asq
aaa
aaa
aaa
@@ -69803,11 +70091,11 @@ aaa
aaa
aaa
aaa
-agZ
-auI
-auI
-auI
-agZ
+ahi
+avp
+avp
+avp
+ahi
aaa
aaa
aaa
@@ -70059,13 +70347,13 @@ aab
aab
aab
aaa
-arK
-agZ
-auI
-auI
-auI
-agZ
-arK
+asq
+ahi
+avp
+avp
+avp
+ahi
+asq
aaa
aaa
aaa
@@ -70317,11 +70605,11 @@ aab
aab
aab
aab
-ate
-auJ
-auJ
-auJ
-azA
+atJ
+avq
+avq
+avq
+aAl
aaa
aaa
aaa
@@ -70575,9 +70863,9 @@ aaa
aaa
aab
aab
-auK
-auK
-auK
+avr
+avr
+avr
aab
aaa
aaa
@@ -70833,7 +71121,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aaa
@@ -71088,9 +71376,9 @@ aab
aab
aab
aab
-anR
+aox
aab
-auK
+avr
aab
aab
aab
@@ -71344,12 +71632,12 @@ aaa
aab
aab
aab
-anR
-arK
-auK
-auK
+aox
+asq
+avr
+avr
aab
-anR
+aox
aab
aab
aab
@@ -71601,13 +71889,13 @@ aab
aab
aab
aab
-anR
-anR
-auK
-auK
-auK
-arK
-anR
+aox
+aox
+avr
+avr
+avr
+asq
+aox
aab
aab
aab
@@ -71855,16 +72143,16 @@ aaa
aab
aab
aab
-anR
-anR
-anR
-anR
-arK
-auK
-auK
-auK
-anR
-anR
+aox
+aox
+aox
+aox
+asq
+avr
+avr
+avr
+aox
+aox
aab
aab
aab
@@ -72114,15 +72402,15 @@ aab
aab
aab
aab
-anR
-anR
-anR
-auK
-auK
-auK
-arK
-anR
-anR
+aox
+aox
+aox
+avr
+avr
+avr
+asq
+aox
+aox
aab
aab
aab
@@ -72372,15 +72660,15 @@ aab
aab
aab
aab
-anR
-arK
-auK
-auK
-auK
-anR
-anR
-anR
-anR
+aox
+asq
+avr
+avr
+avr
+aox
+aox
+aox
+aox
aab
aab
aaa
@@ -72632,13 +72920,13 @@ aab
aab
aab
aab
-auK
-auK
-arK
-anR
-anR
-anR
-anR
+avr
+avr
+asq
+aox
+aox
+aox
+aox
aab
aab
aaa
@@ -72889,13 +73177,13 @@ aab
aab
aab
aab
-auK
+avr
aab
-anR
-anR
-anR
-anR
-anR
+aox
+aox
+aox
+aox
+aox
aab
aab
aab
@@ -73146,11 +73434,11 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
-anR
+aox
aab
aab
aab
@@ -73403,7 +73691,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -73660,7 +73948,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -73917,7 +74205,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -74174,7 +74462,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -74431,7 +74719,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -74688,7 +74976,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -74705,7 +74993,7 @@ aaa
aaa
aab
aab
-anR
+aox
aaa
aaa
aaa
@@ -74945,7 +75233,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -74962,7 +75250,7 @@ aaa
aaa
aab
aab
-anR
+aox
aaa
aaa
aaa
@@ -75202,7 +75490,7 @@ aab
aab
aab
aab
-auK
+avr
aab
aab
aab
@@ -75458,9 +75746,9 @@ aab
aab
aab
aab
-auK
-auK
-auK
+avr
+avr
+avr
aab
aab
aab
@@ -75708,25 +75996,25 @@ aaa
aaa
aaa
aaa
-akY
-akY
-akY
-akY
-akY
-akY
-akY
-akY
-awo
-akY
-akY
-akY
-akY
-akY
-akY
-akY
-akY
-akY
-akY
+alk
+alk
+alk
+alk
+alk
+alk
+alk
+alk
+awW
+alk
+alk
+alk
+alk
+alk
+alk
+alk
+alk
+alk
+alk
aab
aab
aab
@@ -75965,25 +76253,25 @@ aaa
aaa
aaa
aaa
-akY
-amS
-amS
-amT
-aqq
-arL
-atf
-auL
-awp
-auM
-atf
-aAT
-aCL
-aEA
-aGz
-amV
-aJY
-aLI
-akY
+alk
+ant
+ant
+anu
+aqX
+asr
+atK
+avs
+awX
+avt
+atK
+aBG
+aDA
+aFo
+aHp
+anw
+aKJ
+aMv
+alk
aab
aab
aab
@@ -76221,26 +76509,26 @@ aaa
aaa
aaa
aaa
-akY
-akY
-amS
-amS
-amT
-amT
-arL
-atg
-auM
-awq
-auM
-atg
-aAU
-amT
-aEB
-aGA
-aIf
-amT
-aLJ
-akY
+alk
+alk
+ant
+ant
+anu
+anu
+asr
+atL
+avt
+awY
+avt
+atL
+aBH
+anu
+aFp
+aHq
+aIR
+anu
+aMw
+alk
aab
aab
aab
@@ -76478,26 +76766,26 @@ aaa
aaa
aaa
aaa
-akY
-alS
-amT
-amT
-amT
-amT
-arL
-ath
-auN
-awr
-ayb
-ath
-aAU
-aye
-apk
-aqt
-aIg
-aJZ
-aLJ
-akY
+alk
+amm
+anu
+anu
+anu
+anu
+asr
+atM
+avu
+awZ
+ayK
+atM
+aBH
+ayN
+apQ
+ara
+aIS
+aKK
+aMw
+alk
aab
aab
aab
@@ -76511,7 +76799,7 @@ aab
aab
aab
aab
-acs
+acu
aab
aaa
aaa
@@ -76730,33 +77018,33 @@ aab
aaa
aaa
aab
-agZ
-agZ
-agZ
-agZ
-agZ
-agZ
-agZ
-amU
-amT
-amT
-amT
-arL
-ati
-auO
-aws
-ayc
-akY
-aAV
-aCM
-aEC
-aqt
-aIh
-aKa
-aLK
-akY
-akY
-akY
+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
@@ -76987,33 +77275,33 @@ aab
aaa
aaa
aab
-agZ
-ahM
-aiA
-ajn
-akc
-ajn
-agZ
-amT
-amT
-amT
-amT
-arM
-atj
-auP
-awt
-ayd
-azB
-aAW
-aCN
-aEB
-aGB
-aIf
-aKb
-aLL
-aNC
-aPi
-akY
+ahi
+ahU
+aiP
+ajC
+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
@@ -77244,33 +77532,33 @@ aab
aab
aab
aab
-agZ
-ahN
-aiB
-ajn
-akd
-akZ
-alT
-amV
-anS
-aph
-aqr
-aqr
-aqr
-apj
-awu
-aye
-azC
-aqr
-aCO
-apk
-aqt
-aIi
-aKc
-aLM
-aND
-aPj
-akY
+ahi
+ahV
+aiQ
+ajC
+akl
+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
@@ -77501,33 +77789,33 @@ aaa
aab
aab
aab
-agZ
-ahO
-aiC
-ajo
-ake
-ala
-alU
-amW
-anT
-api
-amT
-amT
-amT
-auQ
-awv
-apk
-amT
-amT
-anT
-aED
-aGC
-aIj
-amT
-amT
-akY
-akY
-akY
+ahi
+ahW
+aiR
+ajD
+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
@@ -77758,31 +78046,31 @@ aaa
aaa
aab
aab
-agZ
-ahN
-aiD
-ajn
-akf
-alb
-alU
-amX
-anU
-apj
-aqs
-arN
-atk
-atk
-aww
-ayf
-atk
-atk
-aCP
-atk
-aGD
-aIk
-amT
-aLN
-akY
+ahi
+ahV
+aiS
+ajC
+akn
+aln
+amo
+any
+aoA
+apP
+aqZ
+ast
+atP
+atP
+axe
+ayO
+atP
+atP
+aDE
+atP
+aHt
+aIW
+anu
+aMA
+alk
aab
aab
aab
@@ -78015,31 +78303,31 @@ aaa
aaa
aab
aab
-agZ
-ahP
-aiE
-ajp
-akg
-alc
-agZ
-amY
-anV
-apk
-aqt
-arO
-atl
-auR
-awx
-ayg
-azD
-aAX
-aCQ
-amT
-amT
-aCQ
-aIl
-aLO
-akY
+ahi
+ahX
+aiT
+ajE
+ako
+alo
+ahi
+anz
+aoB
+apQ
+ara
+asu
+atQ
+avy
+axf
+ayP
+aAo
+aBK
+aDF
+anu
+anu
+aDF
+aKO
+aMB
+alk
aab
aab
aab
@@ -78272,32 +78560,32 @@ aaa
aaa
aab
aab
-aha
-aha
-aiF
-aha
-akh
-aha
-aiF
-amZ
-amZ
-amZ
-aqu
-anf
-atm
-auS
-awy
-auS
-azE
-akY
-aCT
-aEE
-aEE
-akY
-akY
-akY
-akY
-aKi
+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
+aKT
aab
aab
aab
@@ -78529,32 +78817,32 @@ aaa
aaa
aab
aaa
-aha
-ahQ
-aiG
-ajq
-aki
-aiG
-aiG
-amZ
-anW
-apl
-aqv
-anf
-atn
-auT
-awz
-auT
-azF
-aCR
-aCR
-aEF
-aCR
-aCR
-aKe
-aLP
-aNE
-aKi
+ahj
+ahY
+aiV
+ajF
+akq
+aiV
+aiV
+anA
+aoC
+apR
+arc
+anI
+atS
+avA
+axh
+avA
+aAq
+aBL
+aBL
+aFt
+aBL
+aBL
+aKP
+aMC
+aOr
+aKT
aab
aab
aab
@@ -78786,38 +79074,38 @@ aaa
aaa
aab
aaa
-aha
-ahR
-aiH
-ajr
-akj
-aiH
-ahR
-amZ
-anX
-apm
-aqw
-anf
-ato
-auU
-awA
-ayh
-azG
-aCR
-aCU
-aEG
-aFh
-aCR
-aKf
-aLQ
-aNF
-aKi
+ahj
+ahZ
+aiW
+ajG
+akr
+aiW
+ahZ
+anA
+aoD
+apS
+ard
+anI
+atT
+avB
+axi
+ayQ
+aAr
+aBL
+aDH
+aFu
+aHu
+aBL
+aKQ
+aMD
+aOs
+aKT
aaa
aab
aab
aab
aab
-anR
+aox
aaa
aaa
aaa
@@ -79043,32 +79331,32 @@ aaa
aaa
aab
aaa
-aha
-ahS
-aiI
-ajs
-akk
-aiI
-ahS
-amZ
-anY
-apm
-aqx
-anf
-atp
-auV
-awB
-ayi
-azH
-aCR
-aCV
-aEH
-aGE
-aCR
-aKg
-aLP
-aNG
-aKi
+ahj
+aia
+aiX
+ajH
+aks
+aiX
+aia
+anA
+aoE
+apS
+are
+anI
+atU
+avC
+axj
+ayR
+aAs
+aBL
+aDI
+aFv
+aHv
+aBL
+aKR
+aMC
+aOt
+aKT
aaa
aab
aab
@@ -79300,32 +79588,32 @@ aaa
aaa
aab
aaa
-aha
-ahT
-aiG
-afz
-akl
-ald
-alV
-ana
-anZ
-apn
-aqy
-arP
-atq
-atq
-awC
-anb
-azI
-aCR
-aCW
-aEI
-aGF
-aCR
-aKh
-aLR
-aNF
-aKi
+ahj
+aib
+aiV
+ajI
+akt
+alp
+amp
+anB
+aoF
+apT
+arf
+asv
+atV
+atV
+axk
+anC
+aAt
+aBL
+aDJ
+aFw
+aHw
+aBL
+aKS
+aME
+aOs
+aKT
aaa
aaa
aab
@@ -79557,50 +79845,50 @@ aab
aab
aab
aab
-aha
-ahU
-aiJ
-aju
-akm
-aiJ
-ahU
-amZ
-aoa
-apo
-aqz
-anf
-atr
-auW
-awD
-ayj
-azJ
-aCR
-aCR
-aEJ
-aCR
-aCR
-aKi
-aKi
-aNH
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
+ahj
+aic
+aiY
+ajJ
+aku
+aiY
+aic
+anA
+aoG
+apU
+arg
+anI
+atW
+avD
+axl
+ayS
+aAu
+aBL
+aBL
+aFx
+aBL
+aBL
+aKT
+aKT
+aOu
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
aaa
aaa
aaa
@@ -79814,50 +80102,50 @@ aab
aab
aab
aab
-aha
-aha
-aha
-aha
-akn
-aha
-aha
-amZ
-aob
-amZ
-aqA
-arQ
-ats
-auX
-awE
-ayk
-auX
-arQ
-aCX
-aEK
-aGG
-arQ
-aKj
-aLS
-aNI
-aPk
-aQZ
-aSq
-aUf
-aVf
-aWN
-aYc
-aZv
-aYc
-aYc
-aYc
-aYc
-aYc
-bhv
-biY
-aKj
-ajK
-aLT
-aKi
+ahj
+ahj
+ahj
+ahj
+akv
+ahj
+ahj
+anA
+aoH
+anA
+arh
+asw
+atX
+avE
+axm
+ayT
+avE
+asw
+aDK
+aFy
+aHx
+asw
+aKU
+aMF
+aOv
+aQb
+aRP
+aTg
+aUW
+aVY
+aXH
+aYT
+ban
+aYT
+aYT
+aYT
+aYT
+aYT
+bil
+bjG
+aKU
+bcX
+aMG
+aKT
aaa
aaa
aaa
@@ -80071,50 +80359,50 @@ aab
aab
aab
aab
-aiK
-ajv
-ajv
-ajv
-ako
-aiK
-alW
-anb
-anb
-app
-afA
-arR
-att
-auY
-awF
-ayl
-att
-aBu
-aDf
-aEL
-aDf
-aIm
-aKk
-aKk
-aNJ
-aPl
-aRa
-aSr
-aKi
-aKi
-aWO
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-aKi
-amC
-aYc
-aYc
-bmW
-aKi
+ahk
+aid
+aid
+aid
+akw
+ahk
+amq
+anC
+anC
+apV
+ari
+asx
+atY
+avF
+axn
+ayU
+atY
+aBM
+aDL
+aFz
+aDL
+aIX
+aKV
+aKV
+aOw
+aQc
+aRQ
+aTh
+aKT
+aKT
+aXI
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+aKT
+bjH
+aYT
+aYT
+bnr
+aKT
aaa
aab
aab
@@ -80328,50 +80616,50 @@ aab
aab
aab
aab
-aiK
-aeG
-ajz
-ajO
-amb
-ale
-alX
-alX
-aoc
-alX
-aqC
-arS
-alX
-auZ
-awG
-aym
-azK
-aAZ
-aCY
-aEM
-aGJ
-aIn
-alE
-aLT
-aKi
-aKi
-aKi
-aKi
-aUg
-aVg
-aWP
-aYd
-aZw
-aZC
-bbW
-bdt
-beH
-bgf
-aKi
-aKi
-aKi
-aKi
-bmX
-aKi
+ahk
+aie
+aiZ
+ajK
+akx
+alq
+amr
+amr
+aoI
+amr
+arj
+asy
+amr
+avG
+axo
+ayV
+aAv
+aBN
+aDM
+aFA
+aHy
+aIY
+aKW
+aMG
+aKT
+aKT
+aKT
+aKT
+aUX
+aVZ
+aXJ
+aYU
+bao
+bau
+bcK
+beq
+bfG
+bhe
+aKT
+aKT
+aKT
+aKT
+bns
+aKT
aaa
aab
aab
@@ -80585,50 +80873,50 @@ aab
aab
aab
aab
-aiK
-ajw
-akq
-alY
-alY
-alY
-alY
-alY
-alY
-alY
-alY
-alY
-anb
-ava
-awD
-ayn
-alY
-aBa
-aCZ
-aCZ
-aGK
-alY
-alY
-aKi
-aKi
+ahk
+aif
+aja
+ajL
+ajL
+ajL
+ajL
+ajL
+ajL
+ajL
+ajL
+ajL
+anC
+avH
+axl
+ayW
+ajL
+aBO
+aDN
+aDN
+aHz
+ajL
+ajL
+aKT
+aKT
aaa
aaa
aaa
-aUg
-aVh
-aWQ
-aYe
-cnZ
-aZC
-bbX
-bbZ
-bbZ
-bbZ
-bbZ
-bja
-coe
-aKi
-bmY
-aKi
+aUX
+aWa
+aXK
+aYV
+bap
+bau
+bcL
+bcN
+bcN
+bcN
+bcN
+bjI
+bkC
+aKT
+bnt
+aKT
aaa
aaa
aab
@@ -80842,50 +81130,50 @@ aab
aab
aab
aab
-aiK
-ajv
-akq
-alY
-amc
-amc
-amD
-aoK
-ama
-anc
-arl
-alY
-atu
-ava
-awD
-ayn
-azL
-aBb
-aDa
-aEN
-aGL
-aGI
-alY
+ahk
+aid
+aja
+ajL
+aky
+aky
+ams
+anD
+aoJ
+apW
+ark
+ajL
+atZ
+avH
+axl
+ayW
+aAw
+aBP
+aDO
+aFB
+aHA
+aIZ
+ajL
aaa
-aLU
-aLU
-aLU
-aLU
-aUg
-aVi
-aWR
-aYf
-aZy
-coa
-bbY
-bdu
-beI
-beI
-bhw
-bjb
-cog
-aKi
-bmY
-aKi
+aMH
+aMH
+aMH
+aMH
+aUX
+aWb
+aXL
+aYW
+baq
+bbp
+bcM
+ber
+bfH
+bfH
+bim
+bjJ
+bkD
+aKT
+bnt
+aKT
aaa
aaa
aab
@@ -80900,11 +81188,11 @@ aab
aab
aab
aab
-baJ
-baJ
-baJ
-baJ
-baJ
+bbs
+bbs
+bbs
+bbs
+bbs
aab
aab
aab
@@ -81099,71 +81387,71 @@ aab
aab
aab
aab
-aiK
-afS
-akq
-alY
-amc
-amc
-aod
-and
-aqD
-aqE
-awN
-arT
-atv
-avb
-awH
-ayn
-azM
-aBc
-aBc
-aBc
-aBc
-aIp
-alY
-aLU
-aLU
-aPm
-aLU
-cnW
-aLU
-aVj
-aWS
-aYe
-aZz
-aZC
-bbZ
-bdv
-beJ
-beJ
-cqZ
-bbZ
-cog
-aKi
-bmY
-aKi
+ahk
+aig
+aja
+ajL
+aky
+aky
+amt
+anE
+aoK
+apX
+arl
+asz
+aua
+avI
+axp
+ayW
+aAx
+aBQ
+aBQ
+aBQ
+aBQ
+aJa
+ajL
+aMH
+aMH
+aQd
+aMH
+aTi
+aMH
+aWc
+aXM
+aYV
+bar
+bau
+bcN
+bes
+bfI
+bfI
+bin
+bcN
+bkD
+aKT
+bnt
+aKT
aaa
aab
aab
aab
-acs
+acu
aab
aab
aab
aab
aab
-baJ
-baJ
-baJ
-baJ
-baJ
-bFV
-bGX
-ajK
-baJ
-baJ
-baJ
+bbs
+bbs
+bbs
+bbs
+bbs
+bFT
+bGQ
+bcX
+bbs
+bbs
+bbs
aab
aab
aaa
@@ -81356,50 +81644,50 @@ aab
aab
aab
aab
-aiK
-ajv
-akq
-alY
-amd
-amd
-aoe
-apq
-apq
-aqF
-and
-arU
-atw
-ava
-awD
-ayn
-azN
-aBd
-aBc
-aBc
-aBc
-aIq
-alY
-aLV
-aNK
-aPn
-aRb
-aPn
-aLU
-aVk
-aWT
-aYe
-aZA
-aZC
-bca
-bbZ
-bbZ
-bbZ
-bbZ
-bbZ
-bkg
-aKi
-bmY
-aKi
+ahk
+aid
+aja
+ajL
+akz
+akz
+amu
+anF
+anF
+apY
+anE
+asA
+aub
+avH
+axl
+ayW
+aAy
+aBR
+aBQ
+aBQ
+aBQ
+aJb
+ajL
+aMI
+aOx
+aQe
+aRR
+aQe
+aMH
+aWd
+aXN
+aYV
+bas
+bau
+bcO
+bcN
+bcN
+bcN
+bcN
+bcN
+bkE
+aKT
+bnt
+aKT
aaa
aab
aab
@@ -81410,17 +81698,17 @@ aab
aab
aab
aab
-baJ
-bCb
-baK
-baK
-baK
-baK
-baK
-baK
-baK
-bJO
-baJ
+bbs
+bCm
+bbt
+bbt
+bbt
+bbt
+bbt
+bbt
+bbt
+bJt
+bbs
aab
aab
aaa
@@ -81603,7 +81891,7 @@ aab
aab
aab
aab
-acs
+acu
aab
aab
aab
@@ -81613,76 +81901,76 @@ aaa
aab
aab
aab
-aiK
-ajv
-akq
-alY
-amd
-amd
-aof
-and
-and
-aqG
-ane
-alY
-atx
-ava
-awI
-ayo
-azO
-aBd
-aBc
-aBc
-aGM
-aIr
-alY
-cnU
-aNL
-aPo
-aRc
-aSt
-aLU
-aVl
-aWU
-aYe
-aZB
-aZC
-ajb
-ajJ
-beK
-cob
-bhy
-bhy
-aZC
-aKi
-bmY
-aKi
+ahk
+aid
+aja
+ajL
+akz
+akz
+amv
+anE
+anE
+apZ
+arm
+ajL
+auc
+avH
+axq
+ayX
+aAz
+aBR
+aBQ
+aBQ
+aHB
+aJc
+ajL
+aMJ
+aOy
+aQf
+aRS
+aTj
+aMH
+aWe
+aXO
+aYV
+bat
+bau
+bcP
+bet
+bfJ
+bhf
+bio
+bio
+bau
+aKT
+bnt
+aKT
aab
aab
aab
-anR
+aox
aab
aab
aab
aab
aab
aab
-bBf
-bdJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-bJP
-baJ
+bBu
+beG
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bJu
+bbs
aab
aab
-anR
-anR
-anR
+aox
+aox
+aox
aab
aaa
aaa
@@ -81870,50 +82158,50 @@ aaa
aab
aab
aab
-aiK
-aeG
-akq
-alY
-ame
-ame
-aoI
-apr
-apr
-ark
-aog
-alY
-aty
-ava
-awD
-ayn
-azO
-aBe
-aBc
-aEO
-aGN
-aIs
-alY
-aLX
-aNL
-aPp
-aRd
-aSu
-aLU
-aVm
-aWV
-cnY
-aZC
-aZC
-aZC
-aZC
-aZC
-aZC
-aZC
-aZC
-aZC
-aKi
-bmZ
-aKi
+ahk
+aie
+aja
+ajL
+akA
+akA
+amw
+anG
+anG
+aqa
+arn
+ajL
+aud
+avH
+axl
+ayW
+aAz
+aBS
+aBQ
+aFC
+aHC
+aJd
+ajL
+aMK
+aOy
+aQg
+aRT
+aTk
+aMH
+aWf
+aXP
+aYX
+bau
+bau
+bau
+bau
+bau
+bau
+bau
+bau
+bau
+aKT
+bnu
+aKT
aab
aab
aab
@@ -81921,24 +82209,24 @@ aab
aab
aab
aab
-bxP
+byk
aab
aab
-bBg
-bdJ
-aKl
-aKl
-baJ
-bDU
-aKl
-aKl
-baJ
-bdJ
-baJ
+bBv
+beG
+bcY
+bcY
+bbs
+bEc
+bcY
+bcY
+bbs
+beG
+bbs
aab
aab
-anR
-anR
+aox
+aox
aab
aab
aab
@@ -82127,39 +82415,39 @@ aaa
aaa
aab
aab
-aiK
-ajv
-akq
-alY
-ame
-ame
-aoJ
-aps
-alZ
-alZ
-alZ
-alY
-atz
-avc
-awJ
-ayp
-azP
-aBe
-aDb
-aEP
-aGO
-aIt
-alY
-aLY
-aNM
-aPq
-aRe
-aSv
-aUh
-aVn
-aWW
-aYh
-aPz
+ahk
+aid
+aja
+ajL
+akA
+akA
+amx
+anH
+aoL
+aoL
+aoL
+ajL
+aue
+avJ
+axr
+ayY
+aAA
+aBS
+aDP
+aFD
+aHD
+aJe
+ajL
+aML
+aOz
+aQh
+aRU
+aTl
+aUY
+aWg
+aXQ
+aYY
+aQq
aab
aab
aab
@@ -82168,31 +82456,31 @@ aab
aab
aab
aab
-aKi
-bmY
-aKi
+aKT
+bnt
+aKT
aab
aab
aab
aab
aab
aab
-bwH
-bxQ
-bwH
+bwL
+byl
+bwL
aab
-bBg
-bdJ
-baJ
-bdF
-baJ
-bdF
-baJ
-aKl
-baJ
-bdJ
-baJ
-baJ
+bBv
+beG
+bbs
+beC
+bbs
+beC
+bbs
+bcY
+bbs
+beG
+bbs
+bbs
aab
aab
aab
@@ -82384,77 +82672,77 @@ aaa
aaa
aab
aab
-aiK
-aiK
-akr
-aiK
-aiK
-aiK
-aiK
-anf
-anf
-anf
-anf
-anf
-anf
-avd
-awK
-ayq
-alY
-aBf
-aBc
-aBc
-aGP
-aIt
-alY
-aLZ
-aNL
-aPn
-aRf
-aSw
-aUi
-aDk
-aWX
-aYi
-aPz
+ahk
+ahk
+ajb
+ahk
+ahk
+ahk
+ahk
+anI
+anI
+anI
+anI
+anI
+anI
+avK
+axs
+ayZ
+ajL
+aBT
+aBQ
+aBQ
+aHE
+aJe
+ajL
+aMM
+aOy
+aQe
+aRV
+aTm
+aUZ
+aDY
+aXR
+aYZ
+aQq
aab
-bcc
-bcc
-bcc
-bcc
-bcc
+bcQ
+bcQ
+bcQ
+bcQ
+bcQ
aab
aab
-aKi
-bmY
-aKi
+aKT
+bnt
+aKT
aab
aab
aab
aab
aab
aab
-bwI
-bxR
-bwI
+bwM
+bym
+bwM
aab
-bBg
-bdJ
-baJ
-aKl
-baJ
-aKl
-baJ
-baJ
-baJ
-bJQ
-bFV
-baJ
+bBv
+beG
+bbs
+bcY
+bbs
+bcY
+bbs
+bbs
+bbs
+bJv
+bFT
+bbs
aab
aab
aab
-anR
-anR
+aox
+aox
aab
aab
aaa
@@ -82641,81 +82929,81 @@ aaa
aaa
aab
aab
-aiK
-ahb
-akq
-ajv
-ajv
-ahb
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-ave
-awL
-ayr
-azN
-aBg
-aBc
-aBc
-aGP
-aIu
-alY
-aMa
-aNN
-aPr
-aRg
-aNL
-aUj
-aVo
-aWX
-aBr
-aPz
+ahk
+aih
+aja
+aid
+aid
+aih
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+avL
+axt
+aza
+aAy
+aBU
+aBQ
+aBQ
+aHE
+aJf
+ajL
+aMN
+aOA
+aQi
+aRW
+aOy
+aVa
+aWh
+aXR
+aCf
+aQq
aab
-bcc
-bdx
-beL
-bgh
-bcc
+bcQ
+beu
+bfK
+bhg
+bcQ
aab
aab
-aKi
-bmY
-aKi
-anR
+aKT
+bnt
+aKT
+aox
aab
aab
aab
aab
aab
-bwJ
-bxS
-bzh
+bwN
+byn
+bzA
aab
-bBg
-bdJ
-baJ
-aKl
-bdF
-aKl
-aKl
-aKl
-baJ
-bdJ
-bKO
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
+bBv
+beG
+bbs
+bcY
+beC
+bcY
+bcY
+bcY
+bbs
+beG
+bKu
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
aaa
aaa
aaa
@@ -82898,87 +83186,87 @@ aaa
aaa
aab
aab
-aiK
-ahV
-akq
-ajv
-ajv
-ahb
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-avf
-awD
-ays
-azP
-aBh
-aDc
-aEQ
-aGQ
-aIv
-alY
-aMb
-aNO
-aPs
-aRh
-aSx
-aUk
-aVp
-aWY
-aBr
-aPz
+ahk
+aii
+aja
+aid
+aid
+aih
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+avM
+axl
+azb
+aAA
+aBV
+aDQ
+aFE
+aHF
+aJg
+ajL
+aMO
+aOB
+aQj
+aRX
+aTn
+aVb
+aWi
+aXS
+aCf
+aQq
aab
-bcc
-bdy
-beM
-beM
-bcc
+bcQ
+bev
+bfL
+bfL
+bcQ
aab
aab
-aKi
-bmY
-aKi
-anR
-anR
-anR
-anR
-anR
-baJ
-baJ
-bxT
-baJ
+aKT
+bnt
+aKT
+aox
+aox
+aox
+aox
+aox
+bbs
+bbs
+byo
+bbs
aab
-bBh
-bdJ
-baJ
-aKl
-baJ
-baJ
-aKl
-baJ
-baJ
-bdJ
-aKl
-beT
-aKl
-bdF
-aKl
-aKl
-aKl
-aKl
-bpG
-bFV
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
+bBw
+beG
+bbs
+bcY
+bbs
+bbs
+bcY
+bbs
+bbs
+beG
+bcY
+bfS
+bcY
+beC
+bcY
+bcY
+bcY
+bcY
+bqh
+bFT
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
aab
aab
aab
@@ -83155,87 +83443,87 @@ aab
aab
aab
aab
-aiK
-ajx
-akq
-ajv
-ajv
-ajy
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-avf
-awD
-ayt
-alY
-alY
-alY
-aER
-aGR
-alY
-alY
-aMc
-aNP
-aPt
-aRi
-aSy
-aLU
-aVq
-aWX
-aYj
-aPz
-baH
-bcc
-bdz
-beN
-bgi
-bcc
-bcc
+ahk
+aij
+aja
+aid
+aid
+aik
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+avM
+axl
+azc
+ajL
+ajL
+ajL
+aFF
+aHG
+ajL
+ajL
+aMP
+aOC
+aQk
+aRY
+aTo
+aMH
+aWj
+aXR
+aZa
+aQq
+bbq
+bcQ
+bew
+bfM
+bhh
+bcQ
+bcQ
aab
-aKi
-bmY
-aKi
-anR
-anR
-anR
-anR
-anR
-baJ
-bwK
-bxU
-baJ
+aKT
+bnt
+aKT
+aox
+aox
+aox
+aox
+aox
+bbs
+bwO
+byp
+bbs
aab
-baJ
-bCc
-baJ
-aKl
-baJ
-bDU
-aKl
-aKl
-baJ
-bdJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-aKl
-aKl
-bdF
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-baJ
+bbs
+bCn
+bbs
+bcY
+bbs
+bEc
+bcY
+bcY
+bbs
+beG
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bcY
+bcY
+beC
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bbs
aaa
aaa
aab
@@ -83412,87 +83700,87 @@ aab
aab
aab
aab
-aiL
-ajy
-aks
-ajO
-ajO
-alf
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-avf
-awD
-ayu
-azQ
-aBi
-aDd
-aES
-aGH
-aGS
-aIo
-aDi
-aMR
-aPu
-aRj
-aSz
-aUl
-aDk
-aWX
-aBr
-aZD
-baH
-bcd
-bdA
-bdA
-bdA
-bhz
-bcc
+ahl
+aik
+ajc
+ajK
+ajK
+alr
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+avM
+axl
+azd
+aAB
+aBW
+aDR
+aFG
+aHH
+aJh
+aKX
+aDW
+aOD
+aQl
+aRZ
+aTp
+aVc
+aDY
+aXR
+aCf
+bav
+bbq
+bcR
+bex
+bex
+bex
+bip
+bcQ
aab
-aKi
-bna
-aKi
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-bxV
-baJ
-baJ
-baJ
-bCd
-baJ
-aKl
-baJ
-baJ
-baJ
-bdF
-baJ
-bdJ
-baJ
-anR
-baJ
-bMV
-bNC
-bOe
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-aKl
-baJ
+aKT
+bnv
+aKT
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+byq
+bbs
+bbs
+bbs
+bCo
+bbs
+bcY
+bbs
+bbs
+bbs
+beC
+bbs
+beG
+bbs
+aox
+bbs
+bMw
+bNh
+bOb
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bcY
+bbs
aaa
aaa
aab
@@ -83668,88 +83956,88 @@ aab
aab
aab
aab
-agC
-agC
-agC
-agC
-agC
-akt
-alg
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-avg
-awM
-ayv
-azR
-aBj
-aDe
-aET
-aGT
-aIx
-aKn
-aKZ
-aMS
-aPv
-aRk
-aSA
-aUm
-aVr
-aWZ
-aYk
-aZE
-baH
-bce
-bdB
-bdA
-bdA
-bhA
-bcc
-aKi
-aKi
-bmY
-aKl
-bpG
-bqP
-brV
-ajK
-aLT
-baJ
-baJ
-gHb
-baJ
-bAh
-bBi
-bCe
-baJ
-bDU
-aKl
-baJ
-aKl
-aKl
-aKl
-bdJ
-baJ
-baJ
-baJ
-bMW
-bND
-aKl
-baJ
-bPj
-bPp
-bPp
-bPU
-bRB
-bPU
-bSz
-bPq
-aKl
-baJ
+agE
+agE
+agE
+agE
+agE
+akB
+als
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+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
+bcQ
+aKT
+aKT
+bnt
+bcY
+bqh
+brq
+bss
+bcX
+aMG
+bbs
+bbs
+byr
+bbs
+bAz
+bBx
+bCp
+bbs
+bEc
+bcY
+bbs
+bcY
+bcY
+bcY
+beG
+bbs
+bbs
+bbs
+bMx
+bNi
+bcY
+bbs
+bPm
+bPs
+bPs
+bPL
+bRm
+bPL
+bSc
+bPt
+bcY
+bbs
aaa
aaa
aaa
@@ -83925,88 +84213,88 @@ aab
aab
aab
aab
-agD
-ahc
-ahW
-aiM
-akp
-aku
-alh
-aiK
-ang
-ang
-ang
-ang
-ang
-anf
-ayw
-azS
-aAY
-aBk
-aCj
-aDn
-aEU
-aGU
-aIy
-aKo
-aMd
-aNQ
-aPw
-aRl
-aSB
-aUn
-aVs
-aXa
-aYl
-aZF
-baI
-bcf
-bdC
-beO
-bgj
-bhB
-bcc
-bkh
-blz
-bma
-baK
-bpH
-baK
-brW
-btm
-btm
-btm
-btm
-sHz
-btm
-bAi
-aKl
-aKl
-bCZ
-bCZ
-bCZ
-bCZ
-bCZ
-bCZ
-bCZ
-bdJ
-aKl
-bLx
-baJ
-baJ
-bNE
-baJ
-baJ
-bPk
-bPT
-aKl
-baJ
-bRC
-bRD
-bSA
-baJ
-aKl
-baJ
+agF
+ahm
+ail
+ajd
+ajM
+akC
+alt
+ahk
+anJ
+anJ
+anJ
+anJ
+anJ
+anI
+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
+bcQ
+bkF
+bmc
+bnw
+bbt
+bqi
+bbt
+bst
+bty
+bty
+bty
+bty
+bys
+bty
+bAA
+bcY
+bcY
+bDj
+bDj
+bDj
+bDj
+bDj
+bDj
+bDj
+beG
+bcY
+bLf
+bbs
+bbs
+bNj
+bbs
+bbs
+bPn
+bPK
+bcY
+bbs
+bRn
+bRo
+bSd
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -84182,88 +84470,88 @@ aab
aab
aab
aab
+agG
+ahm
+aim
+aje
agE
-ahc
-ahX
-aiN
-agC
-aiK
-aiK
-aiK
-ajD
-ajD
-ajD
-ajD
-ajD
-atA
-atA
-atA
-atA
-atA
-aBl
-aDg
-aEV
-aGV
-aGW
-aKp
-aMe
-aNR
-aPx
-aDi
-aSC
-aUo
-aVt
-aXb
-aDk
-aZG
-baH
-bcg
-bdA
-bdA
-bdA
-bhC
-bcc
-beR
-blA
-blA
-blA
-bpI
-bqQ
-bqQ
-bqQ
-bqQ
-bvH
-bvH
-bvH
-bvH
-bvH
-bvH
-bvH
-bvH
-bDV
-bES
-bFW
-bGY
-bIk
-bIY
-bvi
-bgm
-bLy
-bMt
-blz
-bgm
-bOf
-baJ
-bPl
-bPp
-bQs
-bQS
-bRD
-aKl
-bSB
-baJ
-aKl
-baJ
+ahk
+ahk
+ahk
+ajQ
+ajQ
+ajQ
+ajQ
+ajQ
+auf
+auf
+auf
+auf
+auf
+aBZ
+aDU
+aFJ
+aHK
+aHL
+aLa
+aMS
+aOG
+aQo
+aDW
+aTs
+aVf
+aWm
+aXV
+aDY
+bay
+bbq
+bcU
+bex
+bex
+bex
+bis
+bcQ
+bfQ
+bmd
+bmd
+bmd
+bqj
+brr
+brr
+brr
+brr
+bvS
+bvS
+bvS
+bvS
+bvS
+bvS
+bvS
+bvS
+bEd
+bER
+bFU
+bGR
+bHL
+bIJ
+bJw
+bhl
+bLg
+bLV
+bmc
+bhl
+bOc
+bbs
+bPo
+bPs
+bQh
+bQC
+bRo
+bcY
+bSe
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -84439,88 +84727,88 @@ aab
aab
aab
aab
-agE
-ahd
-ahY
-aiO
-agD
-akv
-akG
-akH
-anh
-aoh
-ctr
-cts
-arV
-atB
-avi
-awO
-ayx
-atA
-aBm
-aDg
-aEV
-aGW
-aGW
-aKq
-aMe
-aNS
-aPy
-aRm
-aSD
-aUp
-aVu
-aXc
-aYm
-aPz
-baH
-bcg
-bdD
-beP
-cuF
-bhD
-bcc
-bki
-blA
-bnc
-box
-bpJ
-bqQ
-brX
-btn
-bup
-bvH
-bwL
-bxX
-bzi
-bAj
-bBj
-bCf
-chF
-bDW
-bET
-bFX
-bGZ
-bIl
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-bOg
-baJ
-bPm
-bPU
-bQt
+agG
+ahn
+ain
+ajf
+agF
+akD
+alu
+amy
+anK
+aoM
+aqb
+aro
+asB
+aug
+avP
+axw
+azg
+auf
+aCa
+aDU
+aFJ
+aHL
+aHL
+aLb
+aMS
+aOH
+aQp
+aSc
+aTt
+aVg
+aWn
+aXW
+aZd
+aQq
+bbq
+bcU
+beA
+bfO
+bhj
+bit
+bcQ
+bkG
+bmd
+bnx
+boX
+bqk
+brr
+bsu
+btz
+buJ
+bvS
+bwP
+byt
+bzB
+bAB
+bBy
+bCq
+bDk
+bEe
+bES
+bFV
+bGS
+bHM
+bIK
+bIK
+bIK
+bIK
+bIK
+bIK
+bIK
+bOd
+bbs
bPp
-bRE
-bPp
-bPp
-baJ
-aKl
-baJ
+bPL
+bQi
+bPs
+bRp
+bPs
+bPs
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -84696,88 +84984,88 @@ aab
aab
aab
aab
-agE
-ahe
-ahZ
-aiP
-agF
-akw
-alj
-amg
-amg
-amg
-apu
-amg
-arW
-atC
-avj
-awP
-avj
-azT
-aBn
-aDg
-aEW
-aGX
-aIz
-aKq
-aMe
-aNT
-aPz
-aPz
-aPz
-aUq
-aDk
-aXd
-aYn
-aPz
-baH
-bch
-bdA
-bdA
-bdA
-bhE
-bcc
-beR
-blA
-bnd
-boy
-bpK
-bqQ
-brY
-bto
-buq
-bvH
-bwM
-bxY
-bzj
-bAk
-bBk
-bCf
-bDb
-bDW
-bEU
-bFY
-bHa
-bDW
-bIZ
-bJS
-bJS
-bJS
-bJS
-bJS
-bIZ
-beR
-baJ
-bPn
-bPV
-bQu
-bQT
-bPU
-bPV
-bSC
-baJ
-aKl
-baJ
+agG
+aho
+aio
+ajg
+agH
+akE
+alv
+amz
+amz
+amz
+aqc
+amz
+asC
+auh
+avQ
+axx
+avQ
+aAE
+aCb
+aDU
+aFK
+aHM
+aJk
+aLb
+aMS
+aOI
+aQq
+aQq
+aQq
+aVh
+aDY
+aXX
+aZe
+aQq
+bbq
+bcV
+bex
+bex
+bex
+biu
+bcQ
+bfQ
+bmd
+bny
+boY
+bql
+brr
+bsv
+btA
+buK
+bvS
+bwQ
+byu
+bzC
+bAC
+bBz
+bCq
+bDl
+bEe
+bET
+bFW
+bGT
+bEe
+bIK
+bJx
+bJx
+bJx
+bJx
+bJx
+bIK
+bfQ
+bbs
+bPq
+bPM
+bQj
+bQD
+bPL
+bPM
+bSf
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -84949,92 +85237,92 @@ aaa
aaa
aab
aab
-aeV
+aeT
aab
aab
aab
-agE
-ahf
-ahZ
-aiQ
-ajA
-akx
-alk
-amh
-amh
-amh
-apv
-aqI
-arX
-atD
-avk
-awQ
-ayy
-azU
-aBo
-aDg
-aEX
-aGW
-aGW
-aKr
-aMe
-aNU
-aPA
-aRn
-aSE
-aUr
-aDk
-aXc
-aDk
-aZH
-baH
-bci
-bdE
-beQ
-bgl
-bhF
-bcc
-beR
-blB
-bne
-blB
-blB
-bqQ
-brZ
-btp
-brZ
-bvH
-bwN
-bxZ
-bzk
-bAl
-bBl
-bBl
-chG
-bDX
-bEV
-bFZ
-bHb
-bIm
-bIZ
-bJS
-bJS
-bJS
-bJS
-bJS
-bIZ
-beR
-baJ
-bPo
-bxW
-bPU
-bQU
-bPU
-bND
-bPp
-baJ
-aKl
-baJ
+agG
+ahp
+aio
+ajh
+ajN
+akF
+alw
+amA
+amA
+amA
+aqd
+arp
+asD
+aui
+avR
+axy
+azh
+aAF
+aCc
+aDU
+aFL
+aHL
+aHL
+aLc
+aMS
+aOJ
+aQr
+aSd
+aTu
+aVi
+aDY
+aXW
+aDY
+baz
+bbq
+bcW
+beB
+bfP
+bhk
+biv
+bcQ
+bfQ
+bme
+bnz
+bme
+bme
+brr
+bsw
+btB
+bsw
+bvS
+bwR
+byv
+bzD
+bAD
+bBA
+bBA
+bDm
+bEf
+bEU
+bFX
+bGU
+bHN
+bIK
+bJx
+bJx
+bJx
+bJx
+bJx
+bIK
+bfQ
+bbs
+bPr
+bPN
+bPL
+bQE
+bPL
+bNi
+bPs
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -85210,88 +85498,88 @@ aab
aab
aab
aab
-agE
-ahg
-aia
-aiR
-ajB
-aky
-all
-ami
-ani
-ani
-apw
-aqJ
-arY
-atE
-avl
-awR
-ayz
-azV
-aBj
-aDh
-aEY
-aGY
-aIA
-aKs
-aMf
-aNS
-aPB
-aRo
-aSF
-aUs
-aDk
-aXc
-aDk
-aZI
-baH
-bcc
-bcc
-bcc
-bcc
-bcc
-bcc
-beR
-aKi
-bnf
-aKi
+agG
+ahq
+aip
+aji
+ajO
+akG
+alx
+amB
+anL
+anL
+aqe
+arq
+asE
+auj
+avS
+axz
+azi
+aAG
+aBX
+aDV
+aFM
+aHN
+aJl
+aLd
+aMT
+aOH
+aQs
+aSe
+aTv
+aVj
+aDY
+aXW
+aDY
+baA
+bbq
+bcQ
+bcQ
+bcQ
+bcQ
+bcQ
+bcQ
+bfQ
+aKT
+bnA
+aKT
aab
-bqQ
-bsa
-btq
-bur
-bvH
-bwO
-bya
-bzl
-bAm
-bBm
-bCg
-bvH
-bDY
-bEU
-bFY
-bHc
-bIn
-bIZ
-bJS
-bJS
-bJS
-bJS
-bJS
-bIZ
-beR
-baJ
-bPp
-bPp
-bPp
-bQV
-aKl
-bPp
-aKl
-baJ
-aKl
-baJ
+brr
+bsx
+btC
+buL
+bvS
+bwS
+byw
+bzE
+bAE
+bBB
+bCr
+bvS
+bEg
+bET
+bFW
+bGV
+bHO
+bIK
+bJx
+bJx
+bJx
+bJx
+bJx
+bIK
+bfQ
+bbs
+bPs
+bPs
+bPs
+bQF
+bcY
+bPs
+bcY
+bbs
+bcY
+bbs
aaa
aaa
aaa
@@ -85467,98 +85755,98 @@ aab
aab
aab
aab
-agE
-ahh
-aib
-aiS
-ajC
-akz
-alm
-amj
-anj
-aoi
-apx
-aqK
-arZ
-atF
-avm
-awS
-ayA
-azW
-aBp
-aDi
-aEZ
-aDi
-aDi
-aKt
-aMP
-aNV
-aDj
-aRp
-aSG
-aUs
-aDk
-aXc
-aDk
-aZI
-aPz
-alE
-aKl
-bdG
-bgm
-bgm
-bgm
-beS
-aKi
-bnf
-aKi
+agG
+ahr
+aiq
+ajj
+ajP
+akH
+aly
+amC
+anM
+aoN
+aqf
+arr
+asF
+auk
+avT
+axA
+azj
+aAH
+aCd
+aDW
+aFN
+aDW
+aDW
+aLe
+aMU
+aOK
+aDX
+aSf
+aTw
+aVj
+aDY
+aXW
+aDY
+baA
+aQq
+aKW
+bcY
+beD
+bhl
+bhl
+bhl
+bfR
+aKT
+bnA
+aKT
aab
-bqQ
-bsb
-btr
-bus
-bvH
-bwP
-byb
-bzm
-bAn
-bBn
-bCh
-bvH
-bDZ
-bEW
-bFY
-bHd
-bIo
-bIZ
-bJS
-bJS
-bJS
-bJS
-bJS
-bIZ
-beR
-baJ
-bPq
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-beT
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
+brr
+bsy
+btD
+buM
+bvS
+bwT
+byx
+bzF
+bAF
+bBC
+bCs
+bvS
+bEh
+bEV
+bFW
+bGW
+bHP
+bIK
+bJx
+bJx
+bJx
+bJx
+bJx
+bIK
+bfQ
+bbs
+bPt
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bfS
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
aab
aaa
aaa
@@ -85724,98 +86012,98 @@ aab
aab
aab
aab
-agF
-ahi
-aic
-aiT
-agF
-akA
-aln
-amj
-ank
-aoj
-apy
-aqL
-asa
-atG
-avn
-awT
-ayB
-azX
-aBq
-aDj
-aFa
-aGZ
-aDk
-aKu
-aMg
-aNW
-aPC
-aRq
-aSH
-aUs
-aDk
-aXc
-aDk
-aZI
-aPz
-aLT
-bdF
-beR
-aKi
-aKi
-aKi
-aZM
-aZM
-bng
-aZM
-aZM
-bqQ
-bsc
-bts
-but
-bvH
-bwQ
-byc
-bzn
-bAo
-bAo
-bCi
-bvH
-bEa
-bEX
-bFZ
-bHe
-bIp
-bIZ
-bJS
-bJS
-bJS
-bJS
-bJS
-bIZ
-bBF
-blz
-bPr
-blz
-bQv
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-beT
-aKl
-bdF
-aKl
-aKl
-aKl
-aKl
-aKl
-baJ
+agH
+ahs
+air
+ajk
+agH
+akI
+alz
+amC
+anN
+aoO
+aqg
+ars
+asG
+aul
+avU
+axB
+azk
+aAI
+aCe
+aDX
+aFO
+aHO
+aDY
+aLf
+aMV
+aOL
+aQt
+aSg
+aTx
+aVj
+aDY
+aXW
+aDY
+baA
+aQq
+aMG
+beC
+bfQ
+aKT
+aKT
+aKT
+baE
+baE
+bnB
+baE
+baE
+brr
+bsz
+btE
+buN
+bvS
+bwU
+byy
+bzG
+bAG
+bAG
+bCt
+bvS
+bEi
+bEW
+bFX
+bGX
+bHQ
+bIK
+bJx
+bJx
+bJx
+bJx
+bJx
+bIK
+bOe
+bmc
+bPu
+bmc
+bQk
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bfS
+bcY
+beC
+bcY
+bcY
+bcY
+bcY
+bcY
+bbs
aab
aab
aaa
@@ -85870,8 +86158,8 @@ aab
aab
aab
aab
-cgE
-cgE
+cio
+cio
aab
aab
aab
@@ -85981,107 +86269,107 @@ aab
aab
aab
aab
-agC
-agC
-agC
-agC
-agC
-akB
-alo
-amk
-anl
-aok
-apz
-aqM
-ajD
-atH
-avo
-awU
-ayC
-azY
-aBr
-aDk
-aDk
-aHa
-aIB
-aKv
-aDk
-aDk
-aPD
-aRr
-aWg
-aUt
-aIB
-aXe
-aDk
-aZJ
-aPz
-ajK
-aKl
-beR
-aKi
+agE
+agE
+agE
+agE
+agE
+akJ
+alA
+amD
+anO
+aoP
+aqh
+art
+ajQ
+aum
+avV
+axC
+azl
+aAJ
+aCf
+aDY
+aDY
+aHP
+aJm
+aLg
+aDY
+aDY
+aQu
+aSh
+aTy
+aVk
+aJm
+aXY
+aDY
+baB
+aQq
+bcX
+bcY
+bfQ
+aKT
aab
aab
-aZM
-blC
-bnh
-boz
-bpL
-bqQ
-bsd
-btt
-buu
-bvH
-bwR
-byd
-bzo
-bAo
-bAo
-bCj
-bvH
-bEb
-bEY
-bGa
-bHf
-bIq
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-bIZ
-aKl
-baJ
-aKl
-baJ
-beR
-baJ
-baJ
-aKl
-baJ
-baJ
-bQW
-aKl
-baJ
-baJ
-baJ
-baJ
-baJ
-bRI
-baJ
-baJ
-aKl
-baJ
-baJ
-baJ
+baE
+bmf
+bnC
+boZ
+bqm
+brr
+bsA
+btF
+buO
+bvS
+bwV
+byz
+bzH
+bAG
+bAG
+bCu
+bvS
+bEj
+bEX
+bFY
+bGY
+bHR
+bIK
+bIK
+bIK
+bIK
+bIK
+bIK
+bIK
+bcY
+bbs
+bcY
+bbs
+bfQ
+bbs
+bbs
+bcY
+bbs
+bbs
+bQG
+bcY
+bbs
+bbs
+bbs
+bbs
+bbs
+bUN
+bbs
+bbs
+bcY
+bbs
+bbs
+bbs
aaa
aaa
-baJ
-baJ
-baJ
-baJ
-baJ
+bbs
+bbs
+bbs
+bbs
+bbs
aaa
aaa
aaa
@@ -86091,7 +86379,7 @@ aaa
aaa
aab
aab
-cjl
+cfd
aab
aab
aab
@@ -86117,19 +86405,19 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -86242,103 +86530,103 @@ aab
aab
aab
aab
-ajD
-akC
-alp
-aml
-anm
-aol
-apy
-aqN
-ajD
-atI
-avp
-awV
-ayC
-azZ
-aBs
-aDl
-aFb
-aHb
-aIC
-aKw
-aMh
-aNX
-aPE
-aRs
-aSI
-aRs
-aPD
-aXf
-aPD
-aZK
-aPz
-aKl
-bdG
-beS
-aKi
+ajQ
+akK
+alB
+amE
+anP
+aoQ
+aqg
+aru
+ajQ
+aun
+avW
+axD
+azl
+aAK
+aCg
+aDZ
+aFP
+aHQ
+aJn
+aLh
+aMW
+aOM
+aQv
+aSi
+aTz
+aSi
+aQu
+aXZ
+aQu
+baC
+aQq
+bcY
+beD
+bfR
+aKT
aab
aab
-aZM
-blD
-bni
-boA
-bpL
-bqQ
-bqQ
-btu
-bqQ
-bvH
-bwS
-bye
-bzp
-bAp
-bBo
-bCk
-bvH
-bEc
-bEZ
-bDW
-bHg
-bIr
-bJa
-buQ
-bwr
-bLD
-bLD
-bAW
-aKl
-aKl
-aKl
-aKl
-aKl
-beR
-baJ
-bRF
-bRU
-bSD
-bRH
-aKl
-aKl
-aKl
-baJ
-bVF
-aKl
-aKl
-aKl
-bSD
-baJ
-aKl
-bpG
-aKj
-baJ
-baJ
-baJ
-baJ
-bpG
-aLT
-aKj
-baJ
+baE
+bmg
+bnD
+bpa
+bqm
+brr
+brr
+btG
+brr
+bvS
+bwW
+byA
+bzI
+bAH
+bBD
+bCv
+bvS
+bEk
+bEY
+bEe
+bGZ
+bHS
+bHd
+bJy
+bKv
+bIP
+bIP
+bMy
+bcY
+bcY
+bcY
+bcY
+bcY
+bfQ
+bbs
+bRq
+bRD
+bSg
+bRs
+bcY
+bcY
+bcY
+bbs
+bVi
+bcY
+bcY
+bcY
+bSg
+bbs
+bcY
+bqh
+aKU
+bbs
+bbs
+bbs
+bbs
+bqh
+aMG
+aKU
+bbs
aaa
aaa
aaa
@@ -86348,7 +86636,7 @@ aaa
aaa
aaa
aab
-cjn
+cfe
aab
aab
aab
@@ -86375,18 +86663,18 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -86499,113 +86787,113 @@ aab
aab
aab
aab
-ajD
-ajD
-ajD
-amm
-ajD
-aom
-apA
-aom
-ajD
-atJ
-avq
-awW
-ayD
-ayD
-aBt
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-cgT
-aXg
-cgT
-aPz
-aPz
-baJ
-bdH
-beT
-aKi
-aKi
-aKi
-aZM
-blE
-bnj
-boB
-bpM
-aZM
-bse
-btv
-buv
-bvH
-bwT
-chw
-bzq
-bzq
-bzq
-bCl
-bvH
-bEd
-bCZ
-bEd
-bHh
-bEd
-bJa
-buR
-bLD
-byO
-bAF
-bJa
-bJa
-bJa
-bJa
-bJa
-aKl
-bQw
-bQW
-bRG
-aKl
-aKl
-aKl
-aKl
-bUl
-aKl
-bRI
-bUm
-aKl
-bdF
-aKl
-aKl
-baJ
-aKl
-bdF
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-baJ
+ajQ
+ajQ
+ajQ
+amF
+ajQ
+aoR
+aqi
+aoR
+ajQ
+auo
+avX
+axE
+azm
+azm
+aCh
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aWo
+aYa
+aWo
+aQq
+aQq
+bbs
+beE
+bfS
+aKT
+aKT
+aKT
+baE
+bmh
+bnE
+bpb
+bqn
+baE
+bsB
+btH
+buP
+bvS
+bwX
+byB
+bzJ
+bzJ
+bzJ
+bCw
+bvS
+bEl
+bDj
+bEl
+bHa
+bEl
+bHd
+bJz
+bIP
+bLh
+bLW
+bHd
+bHd
+bHd
+bHd
+bHd
+bcY
+bQl
+bQG
+bRr
+bcY
+bcY
+bcY
+bcY
+bTI
+bcY
+bUN
+bTJ
+bcY
+beC
+bcY
+bcY
+bbs
+bcY
+beC
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bbs
aaa
aaa
-bRJ
-bRJ
-bRJ
-bRJ
-bRJ
+cbQ
+cbQ
+cbQ
+cbQ
+cbQ
aaa
aab
-cjn
+cfe
aab
aab
aab
@@ -86632,18 +86920,18 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -86758,112 +87046,112 @@ aab
aab
aab
aaa
-afr
-amn
-ajD
-aon
-apB
-aqO
-asb
-atK
-avr
-awX
-ayE
-aAa
-aCS
-aDm
-aFc
-aHc
-aDm
-aKx
-aMi
-aDm
-aPF
-aRt
-aSJ
-aDm
-aVw
-aXh
-aVw
-aUz
+afo
+amG
+ajQ
+aoS
+aqj
+arv
+asH
+aup
+avY
+axF
+azn
+aAL
+aCi
+aEa
+aFQ
+aHR
+aEa
+aLi
+aMX
+aEa
+aQw
+aSj
+aTA
+aEa
+aWp
+aYb
+aWp
+aVq
aab
-baJ
-bdI
-beU
-beU
-beU
-bjc
-aZM
-blF
-bnk
-boC
-bpM
-aZM
-bsf
-btw
-bsf
-bvI
-bwU
-byg
-bsf
-bAq
-bsf
-bsf
-bDd
-bEe
-bFa
-bGb
-bHi
-bIs
-bJb
-bJV
-bws
-bKR
-bAH
-bAX
-bBU
-bBV
-bBV
-bJa
-aKl
-beR
-aKl
-bdF
-aKl
-bdF
-bTl
-aKl
-bdF
-aKl
-baJ
-aKl
-aKl
-aKl
-aKl
-aKl
-baJ
-beT
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-baJ
-beT
-baJ
-bRJ
-bRJ
-bRJ
-cda
-cdj
-vTp
-bRJ
-ciP
-ciY
-aWi
-abw
+bbs
+beF
+bfT
+bfT
+bfT
+bjK
+baE
+bmi
+bnF
+bpc
+bqn
+baE
+bsC
+btI
+bsC
+bvT
+bwY
+byC
+bsC
+bAI
+bsC
+bsC
+bDn
+bEm
+bEZ
+bFZ
+bHb
+bHT
+bIL
+bHW
+bKw
+bLi
+bLX
+bMz
+bNk
+bNl
+bNl
+bHd
+bcY
+bfQ
+bcY
+beC
+bcY
+beC
+bSB
+bcY
+beC
+bcY
+bbs
+bcY
+bcY
+bcY
+bcY
+bcY
+bbs
+bfS
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bbs
+bfS
+bbs
+cbQ
+cbQ
+cbQ
+cdm
+cdA
+cdR
+cbQ
+ceu
+ceM
+cff
+cfu
aab
aab
aab
@@ -86888,19 +87176,19 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -87006,7 +87294,7 @@ aab
aab
aab
aab
-acs
+acu
aab
aab
aab
@@ -87015,112 +87303,112 @@ aab
aab
aab
aab
-afr
-amo
-ajD
-aoo
-amg
-aqP
-asc
-atL
-avs
-awY
-ayE
-aAb
-aBv
-aDm
-aFl
-aHd
-aDm
-aKy
-aFl
-aDm
-aFl
-aFl
-aFl
-aDm
-aVx
-aXi
-aVz
-aUz
+afo
+amH
+ajQ
+aoT
+amz
+arw
+asI
+auq
+avZ
+axG
+azn
+aAM
+aCj
+aEa
+aFR
+aHS
+aEa
+aLj
+aFR
+aEa
+aFR
+aFR
+aFR
+aEa
+aWq
+aYc
+aWs
+aVq
aab
-baJ
-bdJ
-aKl
-aZM
-aZM
-bjd
-aZM
-blG
-bnl
-blG
-bpN
-aZM
-bsg
-btx
-buw
-bvJ
-bwV
-bvJ
-bvJ
-bAr
-bvJ
-bCm
-bDe
-bEf
-bFb
-bvJ
-bHj
-bvJ
-bJc
-buT
-bwx
-bzF
-bAI
-bAY
-bBV
-bBV
-bBV
-bJa
-aKl
-beR
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-bQW
-aKl
-aKl
-aKl
-aKl
-bRH
-baJ
-bdG
-bYi
-bYD
-bYi
-bYi
-bSI
-bSI
-bSI
-bSI
-bSI
-bSI
-cbJ
-bSI
-ccF
-bSI
-bSI
-cdx
-bRJ
-ciT
-ckP
-bjR
-aQk
+bbs
+beG
+bcY
+baE
+baE
+bjL
+baE
+bmj
+bnG
+bmj
+bqo
+baE
+bsD
+btJ
+buQ
+bvU
+bwZ
+bvU
+bvU
+bAJ
+bvU
+bCx
+bDo
+bEn
+bFa
+bvU
+bHc
+bvU
+bIM
+bJA
+bKx
+bLj
+bLY
+bMA
+bNl
+bNl
+bNl
+bHd
+bcY
+bfQ
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bQG
+bcY
+bcY
+bcY
+bcY
+bRs
+bbs
+beD
+bXW
+bYl
+bXW
+bXW
+bWy
+bWy
+bWy
+bWy
+bWy
+bWy
+cbR
+bWy
+bWf
+bWy
+bWy
+cdS
+cbQ
+cev
+ceN
+cfg
+cfv
aab
aab
aab
@@ -87149,19 +87437,19 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -87272,112 +87560,112 @@ aab
aab
aab
aab
-afr
-amp
-ajD
-aop
-amg
-aqQ
-asc
-atM
-avs
-awZ
-ayE
-aAc
-aBw
-aDm
-aFd
-aHe
-aDm
-aHe
-aMj
-aDm
-aHe
-aRu
-aHe
-aDm
-aVy
-aXi
-aYo
-aUz
+afo
+amI
+ajQ
+aoU
+amz
+arx
+asI
+aur
+avZ
+axH
+azn
+aAN
+aCk
+aEa
+aFS
+aHT
+aEa
+aHT
+aMY
+aEa
+aHT
+aSk
+aHT
+aEa
+aWr
+aYc
+aZf
+aVq
aab
-baJ
-bdJ
-beV
-aZM
-bhG
-bje
-bkj
-blH
-bnm
-boD
-bpO
-bqR
-bsf
-bty
-bux
-bvK
-bwW
-bwW
-bwW
-bAs
-bwW
-bCn
-bwW
-bEg
-bFc
-bGc
-bsf
-bIt
-bJd
-buU
-bwy
-bLD
-bAJ
-bAX
-bBV
-bCT
-bDN
-bJa
-aKl
-beR
-aKl
-bRH
-bdF
-aKl
-aKl
-aKl
-bUm
-aKl
-baJ
-bRU
-aKl
-bQW
-bdF
-aKl
-bQW
-bXM
-bYj
-bJp
-bYj
-bYj
-bYj
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-bVT
-bRJ
-ciT
-ckP
-cju
-bkY
+bbs
+beG
+bfU
+baE
+biw
+bjM
+bkH
+bmk
+bnH
+bpd
+bqp
+brs
+bsC
+btK
+buR
+bvV
+bxa
+bxa
+bxa
+bAK
+bxa
+bCy
+bxa
+bEo
+bFb
+bGa
+bsC
+bHU
+bIN
+bJB
+bKy
+bIP
+bLZ
+bMz
+bNl
+bOf
+bOC
+bHd
+bcY
+bfQ
+bcY
+bRs
+beC
+bcY
+bcY
+bcY
+bTJ
+bcY
+bbs
+bRD
+bcY
+bQG
+beC
+bcY
+bQG
+bXI
+bXX
+bYm
+bXX
+bXX
+bXX
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+cdT
+cbQ
+cev
+ceN
+cfh
+cfw
aab
aab
aab
@@ -87406,19 +87694,19 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -87529,124 +87817,124 @@ aab
aab
aab
aaa
-afr
-amq
-ajD
-aoq
-apC
-aqR
-asc
-atN
-avt
-axa
-ayE
-aAd
-aBx
-aDm
-aFe
-aHf
-aID
-aKz
-aHh
-aNY
-aPG
-aHh
-aSK
-aUu
-aVz
-aXi
-aYr
-aUz
+afo
+amJ
+ajQ
+aoV
+aqk
+ary
+asI
+aus
+awa
+axI
+azn
+aAO
+aCl
+aEa
+aFT
+aHU
+aJo
+aLk
+aHW
+aON
+aQx
+aHW
+aTB
+aVl
+aWs
+aYc
+aZg
+aVq
aab
-baJ
-bdK
-beW
-bgn
-bhH
-bjf
-bkk
-blI
-bnn
-boE
-bpO
-baL
-bsh
-bty
-bux
-bvL
-bwX
-byh
-byh
-byh
-byh
-byh
-bDf
-bvL
-bvL
-bvL
-bJa
-bJa
-bJa
-bJa
-bJa
-bzG
-bAK
-bJa
-bJa
-bJa
-bJa
-bJa
-aKl
-beR
-aKl
-aKl
-aKl
-baJ
-baJ
-baJ
-bUn
-bSD
-baJ
-baJ
-baJ
-baJ
-baJ
-bWS
-aKl
-bXM
-bYj
-bEh
-bYU
-bZn
-cik
-bZW
-cam
-caF
-caY
+bbs
+beH
+bfV
+bhm
+bix
+bjN
+bkI
+bml
+bnI
+bpe
+bqp
+bbu
+bsE
+btK
+buR
+bvW
+bxb
+byD
+byD
+byD
+byD
+byD
+bDp
+bvW
+bvW
+bvW
+bHd
+bHd
+bHd
+bHd
+bHd
+bLk
+bMa
+bHd
+bHd
+bHd
+bHd
+bHd
+bcY
+bfQ
+bcY
+bcY
+bcY
+bbs
+bbs
+bbs
+bTK
+bSg
+bbs
+bbs
+bbs
+bbs
+bbs
+bWX
+bcY
+bXI
+bXX
+bYn
+bYE
+bYO
+bZf
+bZy
+bZV
+cas
+caU
+cbn
+cbS
+cct
cbp
-cbK
-cci
-cbL
-cbq
-bZA
-cdy
-bRJ
-amI
-ckP
-cju
-bkZ
-clu
-bkR
-aoT
-clu
-clu
-bkR
-clu
-clu
-clu
-clu
-bkR
-aVv
+cbo
+bZx
+cdU
+cbQ
+cew
+ceN
+cfh
+cfx
+cfJ
+cfX
+cgk
+cfJ
+cfJ
+cfX
+cfJ
+cfJ
+cfJ
+cfJ
+cfX
+cin
aab
aab
aaa
@@ -87661,22 +87949,22 @@ aaa
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aaa
@@ -87786,124 +88074,124 @@ aab
aab
aab
aaa
-afr
-amq
-ajD
-ajD
-ajD
-ajD
-asc
-asc
-asc
-asc
-ayE
-aAe
-aBy
-aDm
-aFf
-aFj
-aFj
-aFj
-aFj
-aNZ
-aFj
-aFj
-aij
-aUv
-aVz
-aXi
-aYr
-aUz
+afo
+amJ
+ajQ
+ajQ
+ajQ
+ajQ
+asI
+asI
+asI
+asI
+azn
+aAP
+aCm
+aEa
+aFU
+aFX
+aFX
+aFX
+aFX
+aOO
+aFX
+aFX
+aTC
+aVm
+aWs
+aYc
+aZg
+aVq
aab
-baJ
-bdK
-beX
-aZM
-bhI
-bjg
-bkl
-blJ
-bno
-blR
-bpP
-bqS
-bsf
-bty
-buy
-bvL
-bwY
-byi
-byi
-byi
-byi
-bDg
-bAz
-bFd
-bGd
-bHk
-bJa
-aqH
-aOJ
-aTz
-aZX
-bLD
-bgR
-bmD
-bvk
-bzN
-bDP
-bJa
-aKl
-bBF
-blz
-blz
-bFH
-blz
-blz
-blz
-blz
-blz
-blz
-bGB
-blz
-ccF
-bSI
-bSI
-bSI
-bVV
-bYj
-bYG
-bYV
-bZo
-bZB
-bZX
-can
-caG
-caY
-cbq
-cbL
-ccj
-caY
-cdb
-bZA
-bVT
-bRJ
-ciT
-ckP
-cju
-bkZ
-ajU
-cdP
-ceX
-cfm
-cfz
-cdP
-avT
+bbs
+beH
+bfW
+baE
+biy
bjO
-ckP
-ckP
-cdP
-aQk
+bkJ
+bmm
+bnJ
+bmu
+bqq
+brt
+bsC
+btK
+buS
+bvW
+bxc
+byE
+byE
+byE
+byE
+bCz
+bDq
+bEp
+bFc
+bGb
+bHd
+bHV
+bIO
+bJC
+bKz
+bIP
+bMb
+bMB
+bNm
+bOg
+bOD
+bHd
+bcY
+bOe
+bmc
+bmc
+bRE
+bmc
+bmc
+bmc
+bmc
+bmc
+bmc
+bVj
+bmc
+bWf
+bWy
+bWy
+bWy
+bXJ
+bXX
+bYo
+bYF
+bYP
+bZg
+bZz
+bZW
+cat
+caU
+cbo
+cbp
+ccu
+caU
+cdn
+bZx
+cdT
+cbQ
+cev
+ceN
+cfh
+cfx
+cfK
+cey
+cgl
+cgB
+cgS
+cey
+cft
+chx
+ceN
+ceN
+cey
+cfv
aab
aab
aaa
@@ -87916,25 +88204,25 @@ aab
aaa
aaa
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -88043,124 +88331,124 @@ aab
aab
aab
aaa
-afr
-amq
-afr
-aor
-apD
-afr
-asd
-akD
-akD
-akD
-akD
-akD
-aBz
-aDo
-aFg
-aHg
-aHg
-aKA
-aMk
-aOa
-aHg
-aHg
-aSM
-akI
-aVA
-aXj
-aYr
-aUz
-baJ
-baJ
-bdK
-beX
-aZM
-bhJ
-bjh
-bkm
-blK
-bnp
-boF
-bpQ
-bqT
-bsf
-bty
-buz
-bvL
-bwZ
-byj
-bzr
-bzr
-bzr
-bDh
-bAA
-bFe
-bGe
-bHl
-bJa
-bJV
-bLD
-aTA
-aZY
-bLD
-bgR
-bAY
-bBV
-bzO
-bBV
-bJa
-aKl
-baJ
-aKl
-aKl
-bFJ
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-bEm
-aKl
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bZY
-cao
-caH
-caZ
-caI
-ciH
-caI
-caI
-caI
-cdk
-cdz
-bRJ
-ciT
-ckP
-cju
-bkZ
-ajU
-cdP
-ceY
-cjT
-cfA
-cdP
-cfX
+afo
+amJ
+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
+bbs
+bbs
+beH
+bfW
+baE
+biz
bjP
-ckP
-aTw
-cdP
-aQk
+bkK
+bmn
+bnK
+bpf
+bqr
+bru
+bsC
+btK
+buT
+bvW
+bxd
+byF
+bzK
+bzK
+bzK
+bCA
+bDr
+bEq
+bFd
+bGc
+bHd
+bHW
+bIP
+bJD
+bKA
+bIP
+bMb
+bMA
+bNl
+bOh
+bNl
+bHd
+bcY
+bbs
+bcY
+bcY
+bRF
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bVk
+bcY
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bZA
+bZX
+cau
+caV
+cav
+cbT
+cav
+cav
+cav
+cdB
+cdV
+cbQ
+cev
+ceN
+cfh
+cfx
+cfK
+cey
+cgm
+cgC
+cgT
+cey
+chl
+chy
+ceN
+chV
+cey
+cfv
aab
aab
aab
@@ -88174,24 +88462,24 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -88300,124 +88588,124 @@ aab
aab
aab
aaa
-afr
-amr
-ann
-aos
-apE
-afr
-ahp
-afr
-afr
-afr
-afr
-afr
-afr
-aDm
-aFi
-aHh
-aHh
-aKB
-aHh
-aHh
-aHh
-aHh
-aSN
-aUx
-aVz
-aXk
-aYq
-aZL
-baK
-baK
-bdL
-beX
-aZM
-bhK
-bjg
-bkn
-blJ
-bnq
-boG
-bpR
-bqU
-bsf
-btz
-buA
-ajM
-bxa
-byk
-bzs
-bAt
-bCp
-bDi
-bBp
-bFf
-bGf
-bHm
-bJa
-bJV
-aPQ
-bLD
-aZZ
-bLD
-bgR
-bmD
-bBV
-bBV
-bBV
-bJa
-aKl
-baJ
-aKl
-aKl
-bFJ
-aKl
-aKl
-aKl
-aKl
-aKl
-aKl
-bEm
-aKl
-bWm
-bWF
-bWF
-bWF
-bWF
-bWF
-bYH
-bWm
-cic
-cil
-bZZ
-cap
-caI
-cba
-caY
-ciI
-caY
-caY
-cdc
-bZA
-bVT
-bRJ
-ciV
-bla
-acK
-ckP
-ajU
-cdP
-ceZ
-cfn
-cfB
-cdP
-aYp
-bjQ
-ckP
-cfW
-cdP
-aQk
+afo
+amK
+anQ
+aoX
+aqm
+afo
+ahz
+afo
+afo
+afo
+afo
+afo
+afo
+aEa
+aFW
+aHW
+aHW
+aLm
+aHW
+aHW
+aHW
+aHW
+aTE
+aVo
+aWs
+aYe
+aZh
+baD
+bbt
+bbt
+beI
+bfW
+baE
+biA
+bjO
+bkL
+bmm
+bnL
+bpg
+bqs
+brv
+bsC
+btL
+buU
+bvX
+bxe
+byG
+bzL
+bAL
+bBE
+bCB
+bDs
+bEr
+bFe
+bGd
+bHd
+bHW
+bIQ
+bIP
+bKB
+bIP
+bMb
+bMB
+bNl
+bNl
+bNl
+bHd
+bcY
+bbs
+bcY
+bcY
+bRF
+bcY
+bcY
+bcY
+bcY
+bcY
+bcY
+bVk
+bcY
+bWg
+bWz
+bWz
+bWz
+bWz
+bWz
+bYp
+bWg
+bYQ
+bZh
+bZB
+bZY
+cav
+caW
+caU
+cbU
+caU
+caU
+cdo
+bZx
+cdT
+cbQ
+cex
+ceO
+cfi
+ceN
+cfK
+cey
+cgn
+cgD
+cgU
+cey
+chm
+chz
+ceN
+chW
+cey
+cfv
aab
aab
aaa
@@ -88431,24 +88719,24 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -88557,124 +88845,124 @@ aab
aaa
aaa
aaa
-afr
-amq
-afr
-aot
-apF
-afr
-ahp
-afr
+afo
+amJ
+afo
+aoY
+aqn
+afo
+ahz
+afo
aaa
aaa
aaa
aaa
aaa
-aDp
-aFj
-aHi
-aIE
-aKC
-aMl
-aFj
-aPH
-aFl
-aSO
-aUy
-aVB
-aXi
-aYr
-aZM
-baL
-baL
-baL
-beY
-aZM
-bhL
-bjg
-bko
-blL
-bnr
-boH
-bpS
-bqV
-bsi
-bty
-buB
-bvL
-bxb
-byl
-bzt
-bAu
-bCq
-bDj
-bBq
-abE
-bGg
-bHn
-bJa
-ari
-aQj
-aUG
-baa
-baa
-bgS
-bJa
-bJa
-bJa
-bJa
-bJa
-beT
-baJ
-baJ
-baJ
-bFK
-baJ
-beT
-bMD
-bMD
-bMD
-bMD
-bGC
-bMD
-bWm
-bWF
-bWT
-bWT
-bWT
-bWT
-bWF
-bWm
-cie
-bWm
-caa
-caq
-caJ
-cbb
-cbb
-cbb
-cck
-caY
-ccG
-bZA
-bVT
-bRJ
-cdP
-cdP
-cdP
-cdP
-cdP
-cdP
-cfa
-cfo
-cfa
-cdP
-aWn
-cgf
-ckP
-clw
-cdP
-aQk
+aEc
+aFX
+aHX
+aJp
+aLn
+aNa
+aFX
+aQy
+aFR
+aTF
+aVp
+aWu
+aYc
+aZg
+baE
+bbu
+bbu
+bbu
+bfX
+baE
+biB
+bjO
+bkM
+bmo
+bnM
+bph
+bqt
+brw
+bsF
+btK
+buV
+bvW
+bxf
+byH
+bzM
+bAM
+bBF
+bCC
+bDt
+bEs
+bFf
+bGe
+bHd
+bHX
+bIR
+bJE
+bKC
+bKC
+bMc
+bHd
+bHd
+bHd
+bHd
+bHd
+bfS
+bbs
+bbs
+bbs
+bRG
+bbs
+bfS
+bSh
+bSh
+bSh
+bSh
+bVl
+bSh
+bWg
+bWz
+bWY
+bWY
+bWY
+bWY
+bWz
+bWg
+bYR
+bWg
+bZC
+bZZ
+caw
+caX
+caX
+caX
+ccv
+caU
+bZD
+bZx
+cdT
+cbQ
+cey
+cey
+cey
+cey
+cey
+cey
+cgo
+cgE
+cgo
+cey
+chn
+chA
+ceN
+chX
+cey
+cfv
aab
aab
aaa
@@ -88688,24 +88976,24 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -88807,131 +89095,131 @@ aab
aab
aab
aab
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-afr
-ams
-afr
-afr
-afr
-afr
-ase
-afr
-afr
-afr
-afr
-afr
+afo
+afo
+afo
+afo
+afo
+afo
+afo
+afo
+amL
+afo
+afo
+afo
+afo
+asK
+afo
+afo
+afo
+afo
+afo
aaa
-aDm
-aFk
-aHj
-aIF
-aDm
-aMm
-aOb
-aPI
-aRv
-aSP
-aDm
-ygv
-aXl
-aYr
-aZM
-baM
-baM
-baL
-beY
-aZM
-bhM
-bji
-bkp
-blM
-bns
-boI
-boI
-bqW
-bsj
-btA
-buC
-bvL
-bxc
-byl
-bzr
-bzr
-bzr
-bzr
-bzr
-adu
-agQ
-bHo
-bJa
-bJa
-bJa
-bJa
-bJa
-bJa
-bJa
-bJa
-arj
-bBG
-bGm
-bGm
-bGm
-bGm
-bJk
-bGm
-bJW
-arj
-arj
-bMD
-bFp
-bFM
-bGu
-bGD
-bGR
-bWm
-bWG
-bWF
-bWF
-bWF
-bWF
-bWF
-bWm
-cie
-bWm
-ccG
-car
-caK
-ciz
-cbL
-ciJ
+aEa
+aFY
+aHY
+aJq
+aEa
+aNb
+aOQ
+aQz
+aSl
+aTG
+aEa
+aWv
+aYf
+aZg
+baE
+bbv
+bbv
+bbu
+bfX
+baE
+biC
+bjQ
+bkN
+bmp
+bnN
+bpi
+bpi
+brx
+bsG
+btM
+buW
+bvW
+bxg
+byH
+bzK
+bzK
+bzK
+bzK
+bzK
+bEt
+bFg
+bGf
+bHd
+bHd
+bHd
+bHd
+bHd
+bHd
+bHd
+bHd
+bNn
+bHY
+bIS
+bIS
+bIS
+bIS
+bQH
+bIS
+bRH
+bNn
+bNn
+bSh
+bTL
+bUo
+bUO
+bVm
+bVK
+bWg
+bWA
+bWz
+bWz
+bWz
+bWz
+bWz
+bWg
+bYR
+bWg
+bZD
+caa
+cax
caY
-ciL
-ccG
-bZA
-bJj
-cdG
-cdP
-lIz
-vnH
-ltv
-dWo
-ceM
-cfb
-cfp
-cfC
-cfN
-cdP
-ckn
-clv
-ckw
-cdP
-aQk
+cbp
+cbV
+caU
+ccV
+bZD
+bZx
+cdW
+ceg
+cey
+ceP
+cfj
+cfy
+cfL
+cfY
+cgp
+cgF
+cgV
+chf
+cey
+chB
+chL
+chY
+cey
+cfv
aab
aab
aaa
@@ -88945,24 +89233,24 @@ aab
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -89052,143 +89340,143 @@ aab
aab
aaS
aaS
-abo
-abL
+abq
+abN
aaR
aab
aab
aab
-ads
+ado
adK
aaR
aaR
-afr
-afr
-afr
-agG
-ahj
-aid
-aiU
-aiU
-akD
-alq
-amt
-akD
-aou
-aos
-aqS
-asf
-atO
+afo
+afo
+afo
+agI
+aht
+ais
+ajl
+ajl
+akL
alC
-axb
-aii
-afr
+amM
+akL
+aoZ
+aoX
+arz
+asL
+aut
+awb
+axJ
+azo
+afo
aaa
-aDm
-aFl
-aFl
-aFl
-aDm
-aMn
-aFl
-aFl
-aFl
-aFl
-aDm
-aVz
-aXi
-aYr
-aZM
-baN
-bcj
-baL
-beY
-aZM
-baL
-baL
-baL
-blN
-bnt
-baL
-baL
-baL
-bsk
-bty
-bux
-bvL
-bxd
-bym
-bzu
-bAv
-bAw
-bAy
-bzr
-bzr
-bzr
-bzr
-bvM
+aEa
+aFR
+aFR
+aFR
+aEa
+aNc
+aFR
+aFR
+aFR
+aFR
+aEa
+aWs
+aYc
+aZg
+baE
+bbw
+bcZ
+bbu
+bfX
+baE
+bbu
+bbu
+bbu
+bmq
+bnO
+bbu
+bbu
+bbu
+bsH
+btK
+buR
+bvW
+bxh
+byI
+bzN
+bAN
bBG
-bGm
-bGm
-bGm
-bGm
-bGm
-bGm
-bGm
-bHy
-bEk
-bFv
-bFv
-bFv
-bFv
-bFv
-bEn
-bMD
-bMD
-bMD
-bFt
-bFN
-bGv
-bGE
-bKE
-bWm
-bWF
-bWU
-bWF
-bWF
-bYk
-bWF
-bWm
-cie
-bWm
-bWm
-cas
-bWm
-bWm
+bCD
+bzK
+bzK
+bzK
+bzK
+bHe
+bHY
+bIS
+bIS
+bIS
+bIS
+bIS
+bIS
+bIS
+bOi
+bOE
+bIT
+bIT
+bIT
+bIT
+bIT
+bRI
+bSh
+bSh
+bSh
+bTM
+bUp
+bUP
+bVn
+bVL
+bWg
+bWz
+bWZ
+bWz
+bWz
+bXY
+bWz
+bWg
+bYR
+bWg
+bWg
cab
-cab
-ciK
-cab
-cab
-bZA
-cdw
-bVT
-cdP
-cdS
-cfP
-cfP
-ceE
-ceN
-cfc
-cfq
-cfD
-cfO
-cfY
-cgg
-cgp
-cgv
-cgB
-aQk
+bWg
+bWg
+cbq
+cbq
+ccw
+cbq
+cbq
+bZx
+cdX
+cdT
+cey
+ceQ
+cfk
+cfk
+cfM
+cfZ
+cgq
+cgG
+cgW
+chg
+cho
+chC
+chM
+chZ
+cij
+cfv
aab
aab
aab
@@ -89202,24 +89490,24 @@ aab
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -89306,146 +89594,146 @@ aab
aaa
aaa
aaz
-aaG
+aaH
aaR
-aaW
-abp
-aaW
-aca
-acb
-acD
-acD
-acD
+aaX
+abr
+aaX
+acc
+acd
+acC
+acC
+acC
aaS
-acF
-acF
-afs
-afK
-agj
-agH
-ahk
-afr
-afr
-afr
-afr
-afr
-amu
-ano
-aov
-apG
-aqT
-afO
-atP
-atP
-axc
-ayG
-afr
-afr
-aDm
-aFm
-aHk
-aIG
-aDm
-aMo
-aFj
-aPJ
-aRw
-aSQ
-aDm
-aVD
-aXi
-aYr
-aZM
-baO
-bck
-baL
-beY
-aZM
-bhN
-bjj
-bhN
-blO
-bnu
-boJ
-bpT
-baL
-bsl
-btB
-buD
-bvN
-bvN
-bvN
-bvN
-bvN
-bvN
-bvN
-bIu
-bIu
-bIu
-bIu
-bIu
-bBS
-bFv
-bFv
-bFv
-bFv
-bFv
-bFv
-bFv
-bFv
-bFv
-bFv
-bBT
-bCG
-bCU
-bFv
-bEn
-bMD
-bEt
-bEO
-bOY
-bFO
-bOY
-bGF
-bHq
-bWm
-bWF
-bWF
-bWF
-bWF
-bWF
-bWF
-bWm
-cie
-bWm
+acE
+acE
+afp
+afI
+agf
+agJ
+ahu
+afo
+afo
+afo
+afo
+afo
+amN
+anR
+apa
+aqo
+arA
+asM
+auu
+auu
+axK
+azp
+afo
+afo
+aEa
+aFZ
+aHZ
+aJr
+aEa
+aNd
+aFX
+aQA
+aSm
+aTH
+aEa
+aWw
+aYc
+aZg
+baE
+bbx
+bda
+bbu
+bfX
+baE
+biD
+bjR
+biD
+bmr
+bnP
+bpj
+bqu
+bbu
+bsI
+btN
+buX
+bvY
+bvY
+bvY
+bvY
+bvY
+bvY
+bvY
+bDu
+bDu
+bDu
+bDu
+bDu
+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
+bWg
+bZE
cac
-chY
-caL
-bWm
-bZA
-bZA
-bZA
-bZA
-bZA
-bZA
-cdw
-bVT
-cdP
+cay
+bWg
+bZx
+bZx
+bZx
+bZx
+bZx
+bZx
+cdX
cdT
-cjw
-cea
-ceF
-cea
-ahv
-ahw
-cfE
-cfP
-cfZ
-cfP
-cfP
-cgw
-cgC
-aQk
+cey
+ceR
+cfl
+cfz
+cfN
+cfz
+cgr
+cgH
+cgX
+cfk
+chp
+cfk
+cfk
+cia
+cik
+cfv
aab
aab
aab
@@ -89458,25 +89746,25 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aaa
aaa
@@ -89565,144 +89853,144 @@ aaa
aaa
aaa
aaR
-aaX
-abq
+aaY
+abs
aaS
-acb
+acd
aaS
-acE
acD
-adt
-adt
-aep
-aeW
-afs
-afK
-agk
-agI
-ahk
-afr
+acC
+adp
+adp
+aet
+aeU
+afp
+afI
+agg
+agK
+ahu
+afo
aab
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-axd
-ayH
-aAf
-afr
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aDm
-aVE
-aXi
-aYs
-aZM
-baP
-bcl
-baL
-beY
-aZM
-bhO
-bjk
-bkq
-blP
-bnv
-bjg
-bpT
-baL
-bsm
-bty
-bux
-bvN
-bxe
-byn
-bzv
-bBt
-bAx
-bDm
-adz
-afy
-afU
-akb
-bIu
-bBS
-bFv
-aUH
-bac
-bbC
-bFv
-aWk
-bvl
-bzU
-bAP
-bFv
-bBW
-bCN
-bCV
-bFv
-bHK
-bMD
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+axL
+azq
+aAQ
+afo
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aEa
+aWx
+aYc
+aZi
+baE
+bby
+bdb
+bbu
+bfX
+baE
+biE
+bjS
+bkO
+bms
+bnQ
+bjO
+bqu
+bbu
+bsJ
+btK
+buR
+bvY
+bxi
+byJ
+bzO
+bAO
+bBH
+bCE
+bDv
bEu
-bEP
-bOZ
-bFQ
-bGw
-bGG
-bOY
-bWm
-bWF
-bWF
-bWF
-bWF
-bWF
-bWF
-bWm
-cih
-cim
-akK
-agu
-cxJ
-bWm
-cbs
-cbM
-cbM
-cbM
-cbM
-cdl
-ciM
-ciN
-cdP
-ykk
-ceb
-ceq
-ceG
-cjK
-cfe
-cfr
-cfF
-cfQ
+bFh
+bGg
+bDu
+bHZ
+bIT
+bJF
+bKD
+bLl
+bIT
+bJN
+bNo
+bOj
+bOF
+bIT
+bPP
+bQn
+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
+cdY
+ceh
+cey
+ceS
+cfm
+cfA
+cfO
cga
-cko
-cko
-ckx
-cgC
-aQk
+cgs
+cgI
+cgY
+chh
+chq
+chD
+chD
+cib
+cik
+cfv
aab
aab
aaa
@@ -89717,22 +90005,22 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aaa
@@ -89822,144 +90110,144 @@ aaa
aaa
aaa
aaR
-aaY
-abr
+aaZ
+abt
aaS
aaR
aab
-acF
-acF
+acE
+acE
aab
adL
adK
adK
-afr
-afr
-afr
-afr
-ahl
-afr
+afo
+afo
+afo
+afo
+ahv
+afo
aab
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-axe
-ayI
-aAg
-atP
-atP
-atP
-atP
-atP
-aKD
-aKD
-aKD
-aKD
-aKD
-aSR
-aUz
-aVz
-aXm
-aYt
-aZM
-baQ
-baL
-baL
-beZ
-aZM
-bhN
-bjj
-bhN
-blP
-bnv
-boK
-bpU
-baL
-bsn
-btC
-buE
-bvO
-bxf
-byo
-bzw
-bBu
-bCu
-bDn
-aet
-afP
-afV
-akF
-bIu
-bBS
-bFv
-aUI
-bag
-bbD
-bFv
-ykw
-bzZ
-bbm
-bAR
-bFv
-bBW
-bCO
-bCW
-bFv
-bHL
-bMD
+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
+aWs
+aYg
+aZj
+baE
+bbz
+bbu
+bbu
+bfY
+baE
+biD
+bjR
+biD
+bms
+bnQ
+bpk
+bqv
+bbu
+bsK
+btO
+buY
+bvZ
+bxj
+byK
+bzP
+bAP
+bBI
+bCF
+bDw
bEv
-ykO
-bOY
-bFT
-bGx
-bGx
-bHr
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
-bWm
+bFi
+bGh
+bDu
+bHZ
+bIT
+bJG
+bKE
+bLm
+bIT
+bMC
+bNp
+bKL
+bOG
+bIT
+bPP
+bQo
+bQK
+bIT
+bRK
+bSh
+bSE
+bTc
+bTN
+bUs
+bUR
+bUR
+bVN
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bWg
+bZG
cae
-grH
-caN
-bWm
-cbt
-pjW
-pjW
-pjW
-pjW
-pjW
-pjW
-cdH
-cdP
-cdV
-cec
-cer
-ceH
-cxQ
-cff
-cfs
-cfG
-cfR
+caA
+bWg
+cbs
+caB
+caB
+caB
+caB
+caB
+caB
+cei
+cey
+ceT
+cfn
+cfB
+cfP
cgb
-cgh
-cgq
-cgx
-cgD
-aQk
+cgt
+cgJ
+cgZ
+chi
+chr
+chE
+chN
+cic
+cil
+cfv
aab
aab
aaa
@@ -89976,19 +90264,19 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -90093,130 +90381,130 @@ aab
aab
aab
aaa
-afr
-ahm
-afr
+afo
+ahw
+afo
aab
-ajE
-ajE
-alr
-amv
-anp
-aow
-apH
-aqU
-aqU
-aqU
-ajE
-axf
-axf
-axf
-axf
+ajR
+ajR
+alD
+amO
+anS
+apb
+aqp
+arB
+arB
+arB
+ajR
+axN
+axN
+axN
+axN
aaV
-cnT
-aHl
-aHl
-aHl
-aHl
-aHl
-aHl
-aHl
-aSS
-aUz
-aVz
-aXi
-aYr
-aZM
-baR
-bcm
-bdM
-bfa
-bgo
-bhP
-bjl
-bkr
-blQ
-bnw
-boL
-bpV
-aZM
-bso
-btD
-bso
-bvN
-bxg
-byp
-bzx
-bBv
-bCv
-bDo
-aeD
-bgD
-afW
-akL
-aoP
-bDt
-bFv
-bFv
-bai
-bFv
-bFv
-ykw
-bzZ
-bbm
-bAS
-bFv
-bFv
-bFv
-bDa
-bFv
-bHL
-bMD
-bMD
-bFh
-bFu
-bGh
-bFh
-bFu
-bMD
-bWm
-bWH
-bWV
-bXn
-bXn
-bXn
-bFG
-bYW
-bZp
-bWm
-bWm
-bJs
-bWm
-bWm
-bJx
-pjW
-bJz
-ccH
-cdd
-cdm
-pjW
-cdI
-cdQ
-cdQ
-cdQ
-cdQ
-cjG
-ceP
-cfg
-cdP
-cfH
-ced
-ceP
-cdP
-ced
-ceP
-cdP
-aQk
+abG
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aIa
+aTJ
+aVq
+aWs
+aYc
+aZg
+baE
+bbA
+bdc
+beJ
+bfZ
+bhn
+biF
+bjT
+bkP
+bmt
+bnR
+bpl
+bqw
+baE
+bsL
+btP
+bsL
+bvY
+bxk
+byL
+bzQ
+bAQ
+bBJ
+bCG
+bDx
+bEw
+bFj
+bGi
+bHf
+bIa
+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
@@ -90233,19 +90521,19 @@ aab
aab
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -90350,130 +90638,130 @@ aab
aab
aab
aaa
-afr
-ahn
-afr
+afo
+ahx
+afo
aab
-ajE
-ajE
-als
-amv
-anq
-aox
-apI
-aqU
-aqU
-aqU
-ajE
-axg
-ayJ
-aAh
-aBA
-aDq
-aFn
-aHm
-aIH
-aKE
-aMp
-aOc
-aPK
-aHl
-ajt
-aUA
-aVF
-aXn
-aYu
-aZM
-baS
-bcn
-bdN
-bfb
-bgp
-bhQ
-bjm
-bks
-blR
-bjg
-boM
-aal
-aZM
-bsp
-btE
-buF
-bvN
-bxh
-byq
-bzy
-bBw
-bCw
-bDp
-afd
-afQ
-agq
-akM
-bIu
-bDM
-bFv
-aUJ
-baj
-bcb
-bgU
-bnQ
-bvn
-bvn
-bAU
-bBY
-yky
-bCP
-bDc
-bEl
-bHN
-bEq
-bEw
-bFi
-bFi
-bGi
-bGy
-bGy
-bHt
-bWm
-bWI
-bWW
-bWW
-bWW
-bWW
-bWW
-bWW
-cii
-bZC
-caf
-caw
-pjW
-ciA
-cbv
-cbN
-cbx
-cbx
-ccI
-cdn
-pjW
-cdJ
-cdQ
-cdW
-cee
-cet
-ceI
-ceQ
-cfh
-cft
-ceQ
-ceQ
-cgc
-cgi
-cgr
-cky
-cgy
-aQk
+ajR
+ajR
+alE
+amO
+anT
+apc
+aqq
+arB
+arB
+arB
+ajR
+axO
+azs
+aAS
+aCo
+aEd
+aGa
+aIb
+aJs
+aLp
+aNe
+aOR
+aQB
+aIa
+aTK
+aVr
+aWy
+aYh
+aZk
+baE
+bbB
+bdd
+beK
+bga
+bho
+biG
+bjU
+bkQ
+bmu
+bjO
+bpm
+bqx
+baE
+bsM
+btQ
+buZ
+bvY
+bxl
+byM
+bzR
+bAR
+bBK
+bCH
+bDy
+bEx
+bFk
+bGj
+bDu
+bIb
+bIT
+bJH
+bKG
+bLn
+bMd
+bMD
+bNq
+bNq
+bOI
+bPv
+bPQ
+bQp
+bQM
+bRt
+bRL
+bSi
+bSF
+bTe
+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
@@ -90486,19 +90774,19 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -90607,130 +90895,130 @@ aab
aab
aab
aab
-agJ
-aho
-agJ
+agL
+ahy
+agL
aab
-ajE
-ajE
-alt
-amv
-amv
-amv
-apI
-amv
-amv
-atQ
-ajE
-axh
-ayK
-aAi
-aBB
-aDr
-aFo
-aHn
-aII
-aKF
-aMq
-aKF
-aPL
-aHl
-amr
-aUz
-aLi
-aWf
-aYv
-aZM
-baT
-bco
-bdO
-bco
-bgq
-bhR
-bjn
-yiK
-blR
-bjg
-boN
-aal
-aZM
-bsq
-btE
-buG
-bvN
-bxi
-byr
-bzz
-bBx
-bCx
-bDq
-anw
-afR
-agt
-alG
-bIu
-bDM
-bFv
-aUK
-bak
-ykt
-bgV
-bnR
-bvo
-bzV
-bAZ
-aWh
-bBZ
-aWh
-bDw
-bFv
-arj
-bEq
+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
+aWz
+aYi
+aZl
+baE
+bbC
+bde
+beL
+bde
+bhp
+biH
+bjV
+bkR
+bmu
+bjO
+bpn
+bqx
+baE
+bsN
+btQ
+bva
+bvY
+bxm
+byN
+bzS
+bAS
+bBL
+bCI
+bDz
bEy
-bFj
-bFw
-bGj
-bFw
-bGH
-bHu
-bWm
-bJn
-bXo
-mEE
-mEE
-lUb
-mEE
-mEE
-mEE
-bZD
-cip
-cax
-bJr
-ciB
-cbw
-cbO
-cco
-ccJ
-cde
-cdo
-bJv
-cdK
-amz
-cdX
-cef
-ceu
-cjH
-ceJ
-cfi
-cfu
-cfu
-cfu
-cfu
-cgj
-cgs
-cgz
-ckH
-aQk
+bFl
+bGk
+bDu
+bIb
+bIT
+bJI
+bKH
+bLo
+bMe
+bME
+bNr
+bOk
+bOJ
+bJL
+bPR
+bJL
+bQN
+bIT
+bNn
+bSi
+bSG
+bTf
+bTQ
+bUv
+bTQ
+bVq
+bVP
+bWg
+bWD
+bXc
+bXs
+bXs
+bXZ
+bXs
+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
@@ -90744,18 +91032,18 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -90864,130 +91152,130 @@ aaa
aab
aab
aab
-agK
-ahm
-agK
+agM
+ahw
+agM
aab
-ajE
-ajE
-alu
-amv
-anr
-aoy
-apJ
-aqV
-ash
-atR
-avu
-axi
-ayL
-aAj
-aBC
-aDs
-aFp
-aHo
-aII
-aKG
-aMr
-aOd
-aPM
-aHl
-amr
-aUz
-aVH
-aXp
-aYw
-aZM
-baU
-bcp
-bdP
-bfc
-bgr
-bhS
-bjo
-aZM
-blS
-bnx
-aZM
-aZM
-aZM
-bsr
-bsf
-buH
-bvN
-bxj
-bys
-bzA
-bzA
-bzA
-bDr
-bIu
-afT
-agR
-alH
-bIu
-bDM
-bFv
-aVC
-bal
-bcB
-bbm
-brN
-aWk
-bzX
-bBa
-aWh
-bBZ
-aWh
-bDA
-bFv
-arj
-bEq
+ajR
+ajR
+alG
+amO
+anU
+apd
+aqr
+arC
+asN
+auw
+awc
+axQ
+azu
+aAU
+aCq
+aEf
+aGc
+aId
+aJt
+aLr
+aNg
+aOS
+aQD
+aIa
+amK
+aVq
+aWA
+aYj
+aZm
+baE
+bbD
+bdf
+beM
+bgb
+bhq
+biI
+bjW
+baE
+bmv
+bnS
+baE
+baE
+baE
+bsO
+bsC
+bvb
+bvY
+bxn
+byO
+bzT
+bzT
+bzT
+bCJ
+bDu
bEz
-bFk
-bFx
-btg
-bFx
-bGK
-bHv
-bWm
-cql
-bXp
-cqs
-qbi
-bYo
-cqs
-bXp
-bXp
+bFm
+bGl
+bDu
+bIb
+bIT
+bJJ
+bKI
+bLp
+bKL
+bMF
+bJN
+bOl
+bOK
+bJL
+bPR
+bJL
+bQO
+bIT
+bNn
+bSi
+bSH
+bTg
+bTR
+bUw
+bTR
+bVr
+bVQ
+bWg
+bWE
+bXd
bXt
-ciq
-cit
-pjW
-ciC
-cbx
-cbx
-cbx
-cbx
-cbx
-bJA
-pjW
-cdL
-cdQ
-cdY
-cjx
-cdQ
-cdQ
-fyv
+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
+cgg
+cgg
+cgg
+chH
+cgg
+cif
+cez
cfv
-ceS
-ceS
-ceS
-ceS
-cgk
-ceS
-ckz
-cdQ
-aQk
aab
aab
aab
@@ -91001,18 +91289,18 @@ aaa
aaa
aab
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -91121,130 +91409,130 @@ aaa
aab
aab
aab
-agL
-ahk
-agL
+agN
+ahu
+agN
aab
-ajE
-ajE
-ajE
-ajE
-ajE
-aoz
-apK
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-aDt
-aFq
-aHp
-aIJ
-aKH
-aMs
-aOe
-aPN
-aHl
-aSU
-aUB
-aVG
-aXo
-aYy
-aZM
-aZM
-bcq
-bdQ
-bfd
-aZM
-bcv
-aYx
-bku
-blT
-bny
-boO
-bpY
-aZM
-bso
-btF
-bso
-bvN
-bxk
-aYx
-bcr
-bcr
-aYx
-bDs
-bIu
-bIu
-bIu
-bIu
-bIu
-bEi
-bFv
-ykr
-baG
-bcJ
-aRS
-brN
-aWk
-ykx
-bBa
-aWh
-bCo
-aWh
-bDH
-bFv
-arj
-bEq
-bED
-bFl
-bFy
-bFy
-bFy
-bGL
-bHA
-bWm
-cqm
-bXq
-bXO
-bWY
-bWY
-chX
-bYX
-bZq
-bXp
-cag
-civ
-cbd
-ciE
-cby
-cbQ
-cbR
-ccL
-ccn
-cdq
-pjW
-cdM
-cdQ
-cjf
-cjf
-cfj
-ceK
-ceS
-cjN
-ceS
-cfK
-ceS
-ceS
-ceS
-cgu
-cgA
+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
+aWB
+aYk
+aZn
+baE
+baE
+bdg
+beN
+bgc
+baE
+bdl
+aZs
+bkS
+bmw
+bnT
+bpo
+bqy
+baE
+bsL
+btR
+bsL
+bvY
+bxo
+aZs
+bdh
+bdh
+aZs
+bCK
+bDu
+bDu
+bDu
+bDu
+bDu
+bIc
+bIT
+bJK
+bKJ
+bLq
+bMf
+bMF
+bJN
+bOm
+bOK
+bJL
+bPS
+bJL
+bQP
+bIT
+bNn
+bSi
+bSI
+bTh
+bTS
+bTS
+bTS
+bVs
+bVR
+bWg
+bWF
+bXe
+bXu
+bXL
+bXL
+bYr
+bYH
+bYV
+bXd
+bZK
+caj
+caD
+cbc
+cbx
+cbZ
+cca
+ccY
+cds
+cdH
+caB
+cen
+cez
+ceX
+ceX
+cfE
+cfT
+cgg
cgy
-aQk
+cgg
+chb
+cgg
+cgg
+cgg
+chQ
+cig
+chJ
+cfv
aab
aab
aab
@@ -91257,19 +91545,19 @@ aaa
aaa
aaa
aab
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
-cgE
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
+cio
aab
aab
aab
@@ -91378,130 +91666,130 @@ aab
aab
aab
aab
-afr
-ahk
-afr
+afo
+ahu
+afo
aab
-ajE
-ajE
-alv
-amw
-ans
-aoA
-apL
-aqW
-asi
-atS
-avv
-axj
-ayM
-aAk
-ajE
-atX
-aFr
-aHq
-aIK
-aKI
-aMt
-aMu
-aPO
-aHl
-aSU
-aUB
-aVJ
-aXr
-aYE
-aYI
-baV
-bcr
-aYx
-bcr
-bgs
-bba
-aYx
-aYx
-aYx
-aYx
-aYx
-aYx
-baV
-bss
-bcr
-buI
-bjr
-aYx
-aYx
-aYx
-aYx
-bba
-aYx
-aYx
-bEr
-aYI
-bGo
-bHw
-bEo
-aQl
-aWh
-aWh
-aWh
-bbm
-brN
-bvp
-bzZ
-bBa
-aWh
-bCo
-aWh
-bDH
-bFv
-arj
-bEq
-bEz
-bFm
-bFm
-bFm
-bFm
-bFm
-bHv
-bWm
-bWm
-bKo
-bKq
-bKs
-bKs
-bKs
-bKt
-bWm
-bJq
-cir
-ngR
-cbe
-ciE
-cby
-cbR
-ccq
-ccL
-ccn
-cdr
-pjW
-cdN
-cdQ
-cei
-cei
-cjy
-ceL
-ceT
-cfL
-ceg
-ceS
-ceS
-cfT
-cgm
-ckp
-ckA
-ckI
-aQk
+ajR
+ajR
+alH
+amP
+anV
+apf
+aqt
+arD
+asO
+aux
+awd
+axR
+azv
+aAV
+ajR
+auC
+aGe
+aIf
+aJv
+aLt
+aNi
+aNj
+aQF
+aIa
+aTL
+aVs
+aWC
+aYl
+aZo
+baF
+bbE
+bdh
+aZs
+bdh
+bhr
+biJ
+aZs
+aZs
+aZs
+aZs
+aZs
+aZs
+bbE
+bsP
+bdh
+bvc
+bwa
+aZs
+aZs
+aZs
+aZs
+biJ
+aZs
+aZs
+bEA
+baF
+bGm
+bHg
+bId
+bIU
+bJL
+bJL
+bJL
+bKL
+bMF
+bNs
+bNp
+bOK
+bJL
+bPS
+bJL
+bQP
+bIT
+bNn
+bSi
+bSH
+bTi
+bTi
+bTi
+bTi
+bTi
+bVQ
+bWg
+bWg
+bXf
+bXv
+bXM
+bXM
+bXM
+bYI
+bWg
+bZl
+bZL
+cak
+caE
+cbc
+cbx
+cca
+ccz
+ccY
+cds
+cdI
+caB
+ceo
+cez
+ceY
+ceY
+cfF
+cfU
+cgh
+cgz
+cgM
+cgg
+cgg
+cht
+chI
+chR
+cih
+chK
+cfv
aab
aab
aab
@@ -91524,8 +91812,8 @@ aab
aab
aab
aab
-cgE
-cgE
+cio
+cio
aab
aab
aab
@@ -91635,130 +91923,130 @@ aab
aab
aab
aab
-afr
-ahm
-afr
+afo
+ahw
+afo
aab
-ajE
-ajE
-alw
-amv
-ant
-aoB
-apM
-aqX
-asj
-amv
-amv
-amv
-amv
-amv
-aBD
-aDr
-aFr
-aHr
-aIL
-aKJ
-aMu
-aMu
-aPP
-aHl
-amr
-aUB
-aVK
-akJ
-aYF
-aYT
-baW
-bcs
-baW
-baW
-bgt
-bhU
-baW
-baW
-bgt
-baW
-baW
-baW
-baW
-baW
-baW
-baW
-baW
-bcs
-baW
-baW
-baW
-bBy
-baW
-baW
-baW
-aYT
-baW
-bHx
-aYx
-aCE
-aWh
-aWh
-aWh
-bbm
-brN
-bak
-bbm
-bBb
-bBH
-bBH
-bCR
-bCA
-bFv
-arj
-bEq
-bEz
-bFm
-bFm
-bFm
-bFm
-bFm
-ykU
-bWm
-bXa
-bXs
-cqt
-bXQ
-bXQ
-bXQ
-cia
-bWm
-bZG
-byJ
-bZG
-pjW
-ciF
-cby
-cbR
-ccr
-ccL
-ccn
+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
+bYJ
+bWg
+bZm
+bZM
+bZm
+caB
+cbd
+cbx
+cca
+ccA
+ccY
cds
-pjW
-cdN
-cdQ
-cjg
-cjg
-cej
+cdJ
+caB
+ceo
cez
-cfl
-cdQ
-mmG
-cfL
-cfL
-cge
-cdQ
-ckq
-ckB
-cdQ
-aQk
+ceZ
+ceZ
+cfG
+cfV
+cgi
+cez
+cgN
+cgz
+cgz
+chu
+cez
+chS
+cii
+cez
+cfv
aab
aab
aab
@@ -91892,130 +92180,130 @@ aab
aab
aab
aab
-afr
-ahm
-afr
+afo
+ahw
+afo
aab
-ajE
-ajE
-alx
-amv
-amv
-amv
-apI
-aqY
-asj
-atT
-amv
-amv
-amv
-amv
-aBE
-aDu
-aFs
-aHs
-aIM
-aKK
-aMv
-aOf
-cnV
-aHl
-amr
-aUB
-aVL
-aXr
-aYG
-bfe
-bgQ
-bhg
-bhx
-bio
-bgQ
-bkC
-bgQ
-bio
-bhx
-bio
-bgQ
-bmJ
-bgQ
-bgQ
-boS
-bgQ
-bhx
-bpZ
-bgQ
-bgQ
-bgQ
-bqv
-bhx
-bgQ
-bgQ
-btG
-bgQ
-buP
-apU
-aQn
-aWj
-bbi
-bcM
-aWh
-bod
-bbm
-aWh
-bBc
-bBs
-bCr
-aWh
-bDJ
-bFv
-arj
-bEq
-bEF
-bFm
-bFm
-bFm
-bFm
-bFm
-bHF
-bWm
-bWm
-tRw
-cBt
-bXR
-bYr
-bYL
-bYr
-fBF
-hla
-duy
-xXW
-pjW
-pjW
-wrl
-cbS
-cbS
-cbS
-ggj
-pjW
-pjW
-eEV
-cdQ
-cjh
-pEO
-cfk
-cfy
-cey
-cgn
-cjP
-cke
-cke
-cke
-cgy
-aQm
-avT
-avT
-aRP
+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
+aYl
+aZq
+baH
+bbG
+bdj
+beO
+bgd
+bbG
+biL
+bbG
+bgd
+beO
+bgd
+bbG
+bqz
+bbG
+bbG
+btS
+bbG
+beO
+bxp
+bbG
+bbG
+bbG
+bBN
+beO
+bbG
+bbG
+bFn
+bbG
+bHi
+bIe
+bIW
+bJM
+bKK
+bLr
+bJL
+bMG
+bKL
+bJL
+bOM
+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
+cfr
+cfH
+cfW
+cgj
+cgA
+cgO
+chc
+chc
+chc
+chJ
+chT
+cft
+cft
+chU
aab
aab
aaa
@@ -92149,127 +92437,127 @@ aab
aab
aab
aab
-afr
-ahp
-afr
+afo
+ahz
+afo
aab
-ajE
-ajE
-alw
-amv
-amv
-amv
-apN
-aqZ
-ask
-atU
-avw
-amv
-amv
-amv
-aBE
-aDr
-aFr
-aHt
-aHt
-aHt
-aHt
-aHt
-aHt
-aHt
-aSV
-aHt
-aVM
-aXr
-aYz
-aUB
-baX
-bcu
-bdS
-bff
-bgu
-aUB
-bgu
-bcu
-bdS
-bff
-baX
-aUB
-aZS
-aZT
-aZQ
-buJ
-bvP
-aZQ
-buJ
-bzB
-bvP
-aZQ
-buJ
-bzB
-bvP
-aZQ
-bGp
-bHB
-aYx
-aQp
-aWk
-bbm
-bcS
-aWh
-bsF
-bvZ
-bAL
-bBr
-bBN
-bCs
-bCr
-bDL
-bFv
-arj
-bEq
-bEz
-bFm
-bFm
-bFm
-bFm
-bFm
-bHv
-bWm
-cqo
-cqq
-bXt
-bXS
-bJo
-ofm
-bXp
-bXp
-ofm
-iNY
-nOo
-bJw
-cbg
-bQO
-cbT
-ccs
-ccN
-prN
-jtP
-xIJ
-cdO
-cdQ
-jEY
-hzv
-cfk
-cfy
-cey
-cgn
-cjP
-cke
-cke
-cke
-cjy
-aQk
+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
+aYl
+aZr
+aVs
+bbH
+bdk
+beP
+bge
+bht
+aVs
+bht
+bdk
+beP
+bge
+bbH
+aVs
+bry
+bsQ
+baI
+bvd
+bwb
+baI
+bvd
+bzU
+bwb
+baI
+bvd
+bzU
+bwb
+baI
+bGn
+bHj
+aZs
+bIX
+bJN
+bKL
+bLs
+bJL
+bMH
+bNt
+bOn
+bON
+bPx
+bPU
+bPT
+bQS
+bIT
+bNn
+bSi
+bSH
+bTi
+bTi
+bTi
+bTi
+bTi
+bVQ
+bWg
+bWH
+bXi
+bXy
+bXP
+bYc
+bYt
+bXd
+bXd
+bYt
+bZO
+cam
+caF
+cbe
+cbz
+ccc
+ccB
+ccZ
+cdu
+cdK
+caG
+ceq
+cez
+cfb
+cfs
+cfH
+cfW
+cgj
+cgA
+cgO
+chc
+chc
+chc
+cfF
+cfv
aab
aab
aab
@@ -92396,7 +92684,7 @@ aaa
aaa
aaa
aab
-acs
+acu
aab
aaa
aaa
@@ -92406,127 +92694,127 @@ aaa
aab
aab
aab
-afr
-ahm
-afr
+afo
+ahw
+afo
aab
-ajE
-ajE
-aly
-amx
-anu
-aoC
-anr
-ara
-asl
-atV
-avx
-axk
-avx
-avx
-ajE
-aDv
-aFt
-aHt
-aIN
-aKL
-aMw
-aOg
-aPR
-aRx
-aSW
-aHt
-aVN
-aXr
-aYx
-aUB
-baY
-bcv
-bcv
-bcv
-bgv
-bhW
-bjp
-bcv
-bcv
-bcv
-boP
-aUB
-aYx
-aYx
-btH
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-btH
-aYx
-bvm
-bIA
-aQp
-aWk
-aWk
-bcB
-aWh
-bod
-bxp
-aWh
-bBs
-bBc
-bBs
-aWh
-ykE
-bFv
-arj
-bEq
-bEI
-bFn
-bFz
-bKy
-bKC
-bKD
-bKG
-bWm
-bXd
-cqq
-bXu
-bXT
-lqM
-bYM
-bZb
-bWm
-cqL
-wIQ
-ogS
-xIJ
-cbh
-cbz
-cbU
-cct
-cct
-oEX
-pBT
-xIJ
-jhE
-ciW
-kyC
-kyC
-cdQ
-ciW
-cdQ
-cdQ
-tWi
-mtB
-vAr
-ghF
-cjy
-aQk
+ajR
+ajR
+alK
+amQ
+anX
+aph
+anU
+arH
+asR
+auA
+awf
+axS
+awf
+awf
+ajR
+aEi
+aGg
+aIi
+aJy
+aLw
+aNl
+aOV
+aQI
+aSn
+aTN
+aIi
+aWG
+aYl
+aZs
+aVs
+bbI
+bdl
+bdl
+bdl
+bhu
+biM
+bjX
+bdl
+bdl
+bdl
+bpp
+aVs
+aZs
+aZs
+btT
+bve
+bve
+bve
+bve
+bve
+bve
+bve
+bve
+bve
+bve
+btT
+aZs
+bHk
+bIf
+bIX
+bJN
+bJN
+bLp
+bJL
+bMG
+bNu
+bJL
+bOO
+bOM
+bOO
+bJL
+bQT
+bIT
+bNn
+bSi
+bSK
+bTj
+bTT
+bUx
+bUT
+bVt
+bVU
+bWg
+bWI
+bXi
+bXz
+bXQ
+bYd
+bYu
+bYK
+bWg
+bZo
+bZP
+can
+caG
+cbf
+cbA
+ccd
+ccC
+ccC
+cdv
+cdL
+caG
+cer
+ceB
+cfc
+cfc
+cez
+ceB
+cez
+cez
+cgP
+chd
+chk
+chv
+cfF
+cfv
aab
aab
aab
@@ -92663,127 +92951,127 @@ aaa
aab
aab
aab
-agJ
-aho
-agJ
+agL
+ahy
+agL
aab
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-aDw
-aFr
-aHt
-aIO
-aKM
-aKM
-aOh
-aKM
-aKM
-aSW
-aHt
-aVO
-aXr
-aYz
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-bqY
-aYz
-aZQ
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-aZQ
-bGq
-bHB
-aYx
-aQq
-aLW
-aLW
-aYg
-aCE
-bsQ
-apW
-aQo
-aQo
-aQo
-aQo
-bCS
-bFv
-bFv
-bHO
-bEq
-bEK
-bFo
-bEq
-bKz
-bEq
-bEK
-bFo
-bWm
-bWm
-bKp
-bKr
-rcr
-bYs
-bKp
-bKr
-bWm
-bWm
-bWm
-bWm
-xIJ
-xIJ
-cbA
-cbU
-cct
-xCL
-cct
-bJB
-xIJ
-cdO
-cdQ
-cdQ
-kyC
-hcb
-kyC
-kyC
-ciW
-lQg
-lQg
-lQg
-lQg
-ckI
-aQk
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+aEj
+aGe
+aIi
+aJz
+aLx
+aLx
+aOW
+aLx
+aLx
+aTN
+aIi
+aWH
+aYl
+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
+bSL
+bTk
+bSi
+bUy
+bSi
+bSL
+bTk
+bWg
+bWg
+bXj
+bXA
+bXR
+bYe
+bXj
+bXA
+bWg
+bWg
+bWg
+bWg
+caG
+caG
+cbB
+ccd
+ccC
+cda
+ccC
+cdM
+caG
+ceq
+cez
+cez
+cfc
+cfI
+cfc
+cfc
+ceB
+cgQ
+cgQ
+cgQ
+cgQ
+chK
+cfv
aab
aab
aab
@@ -92920,127 +93208,127 @@ aaa
aaa
aab
aab
-agK
-ahk
-agK
+agM
+ahu
+agM
aab
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ajE
-ahr
-atW
-avy
-axl
-ayN
-aAl
-aBF
-aDx
-aFu
-aHu
-aIP
-aIP
-aIP
-aOi
-aIP
-aIP
-aSX
-aUC
-aVP
-aXt
-aYA
-aZQ
-baZ
-baZ
-baZ
-baZ
-bgw
-aZQ
-bjq
-bjq
-bjq
-bjq
-boQ
-aZQ
-bqZ
-aYx
-btI
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-bFr
-aYx
-bHC
-aYx
-aVG
-bKm
-bFq
-bAD
-bLU
-bBR
-bRh
-bLU
-bLU
-bLU
-bLU
-bQE
-grR
-bJI
-bLU
-bGk
-bLU
-bLU
-bFq
-bKA
-bLU
-bLU
-bLU
-bJm
-bJI
-bRh
-bXw
-bXV
-bYt
-bYN
-bLU
-bFq
-cqz
-anx
-bJt
-oqb
-xIJ
-pxo
-cbW
-cct
-cct
-cct
-rKm
-nif
-bJC
-bKd
-cdQ
-cdQ
-cdQ
-cdQ
-cdQ
-cdQ
-cjQ
-cel
-cel
-ckf
-cdQ
-aQk
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ajR
+ahC
+auB
+awg
+axT
+azw
+aAW
+aCt
+aEk
+aGh
+aIj
+aJA
+aJA
+aJA
+aOX
+aJA
+aJA
+aTO
+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
+bKM
+bLu
+bLw
+bMJ
+bNw
+bLw
+bLw
+bLw
+bLw
+bQs
+bQU
+bRu
+bLw
+bSj
+bLw
+bLw
+bKM
+bUz
+bLw
+bLw
+bLw
+bWh
+bRu
+bNw
+bXB
+bXS
+bYf
+bYv
+bLw
+bKM
+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
@@ -93177,9 +93465,9 @@ aaa
aaa
aaa
aab
-agL
-ahm
-agL
+agN
+ahw
+agN
aab
aab
aaa
@@ -93190,114 +93478,114 @@ aaa
aaa
aaa
aaV
-atX
-cnR
-axm
-ayO
-aAm
-aBG
-aDy
-aFv
-aHv
-aIQ
-aKN
-aKN
-aOj
-aKN
-aKN
-aSY
-aUD
-aVQ
-aXt
-aYB
-aZQ
-baZ
-baZ
-baZ
-baZ
-baZ
-aZQ
-bjq
-bjq
-bjq
-bjq
-bjq
-aZQ
-bra
-bsu
-aZQ
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-bFs
-aYx
-bwg
-bFg
-bGn
-bGs
-bGz
-bGP
-bGP
-bHp
-bHs
-bGP
-bGP
-bHG
-bGP
-bGP
-bHs
-bGP
-bHG
-bKh
-bGP
-bKk
-bGz
-bKB
-bSU
-bQd
-bQd
-bWd
-bQd
-bRi
-bQd
-bXW
-bYu
-cib
-cib
-bKu
-bKv
-cqA
-cqO
-bKw
-xIJ
-xIJ
-bJy
-cQr
-vPN
-vPN
-oFJ
-xIJ
-xIJ
+auC
+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
+bve
+bve
+bve
+bve
+bve
+bve
+bFp
+aZs
+bHm
+bIg
+bIZ
+bJQ
+bKN
+bLv
+bLv
+bMK
+bNx
+bLv
+bLv
+bPy
+bLv
+bLv
+bNx
+bLv
+bPy
+bSk
+bLv
+bTl
+bKN
+bUA
+bUU
+bVu
+bVu
+bWi
+bVu
+bXk
+bVu
+bXT
+bYg
+bYw
+bYw
+bYX
+bZq
+bZR
+cap
+caI
+caG
+caG
+ccf
+ccD
+cdb
+cdb
cdO
-bSx
-avT
-avT
-avT
-avT
-avT
-avT
-avT
-avT
-avT
-avT
-aRP
+caG
+caG
+ceq
+bEK
+cft
+cft
+cft
+cft
+cft
+cft
+cft
+cft
+cft
+cft
+chU
aab
aaa
aaa
@@ -93421,11 +93709,11 @@ aad
aad
aad
aad
-abs
-abM
-abM
-abM
-acG
+abu
+abO
+abO
+abO
+acF
aad
aad
aad
@@ -93434,9 +93722,9 @@ aad
aad
aad
aaa
-afr
-aho
-afr
+afo
+ahy
+afo
aab
aab
aab
@@ -93447,103 +93735,103 @@ aaa
aaa
aaa
aaV
-atY
-avA
-axn
-ayP
-aAn
-aBH
-aDz
-aFw
-aHw
-aIR
-aIR
-aMx
-aOk
-aPS
-aRy
-aSZ
-aUC
-aVP
-aXt
-aYC
-aZQ
-baZ
-bcw
-baZ
-bfg
-baZ
-aZQ
-bjq
-bkv
-bjq
-bnz
-bjq
-aZQ
-brb
-aYx
-btI
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-btI
-aYx
-bxl
-aYx
-aVG
-bKm
-bFq
-bLU
-bLU
-bLU
-bNO
-bLU
-bLU
-bSV
-bLU
-bLU
-bLU
-bLU
-bSV
-bBR
-bLU
-bHz
-bHD
-bIc
-bIy
-bOx
-bLU
-bBR
-bLU
-bLU
-bLU
-bLU
-bLU
-guu
-bJR
-bFq
-bSV
-bLU
-bYO
-vus
-xIJ
-cbB
-cbY
-ccv
-ccv
-ccv
-cbY
-xbY
-xIJ
-tFP
-bSx
+auD
+awi
+axV
+azy
+aAY
+aCv
+aEm
+aGj
+aIl
+aJC
+aJC
+aNm
+aOZ
+aQJ
+aSo
+aTQ
+aVt
+aWI
+aYn
+aZv
+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
+bKM
+bLw
+bLw
+bLw
+bNy
+bLw
+bLw
+bPz
+bLw
+bLw
+bLw
+bLw
+bPz
+bMJ
+bLw
+bTm
+bTU
+bUB
+bUV
+bVv
+bLw
+bMJ
+bLw
+bLw
+bLw
+bLw
+bLw
+bYx
+bYL
+bKM
+bPz
+bLw
+caq
+caJ
+caG
+cbD
+ccg
+ccE
+ccE
+ccE
+ccg
+ceb
+caG
+ceD
+bEK
aab
aab
aab
@@ -93675,7 +93963,7 @@ aab
aab
aad
aaA
-aaH
+aaI
aaT
aaT
aaT
@@ -93687,12 +93975,12 @@ aaT
aaT
adM
aad
-acC
+aeV
aah
aad
aad
aad
-ahq
+ahA
aad
aad
aab
@@ -93704,103 +93992,103 @@ aaa
aaV
aaV
aaV
-atZ
-avB
-axo
-atZ
-avB
+auE
+awj
+axW
+auE
+awj
aaV
-aDA
-aFx
-aHt
-aIS
-aKM
-aKM
-aKM
-aPT
-aRz
-aTa
-aHt
-aVR
-aXt
-aYD
-aZQ
-baZ
-baZ
-baZ
-baZ
-baZ
-aZQ
-bjq
-bjq
-bjq
-bjq
-bjq
-aZQ
-brc
-aYD
-aZQ
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-aZQ
+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
+bJR
+bNz
bGr
-bxm
-aYx
-aRO
-aWl
-aWl
-aWl
-aWl
-aWl
-bxu
-bRL
-bep
-bep
-bep
-bel
-bfG
-bfG
-bem
-bJZ
-bUz
-bUz
-bUz
-bUz
-bUz
-bUz
-bVO
-gtY
-bqr
-bqB
-brC
-bVO
-bVO
-bUz
-bUz
-bUz
-bsR
-bsR
-bUz
-btS
-xIJ
-cbC
-xIJ
-ccw
-ccS
-tDD
-xIJ
-cbC
-xIJ
-oAG
-bSx
+bOP
+bOP
+bOP
+bQt
+bQV
+bQV
+bRN
+bSl
+bSM
+bSM
+bSM
+bSM
+bSM
+bSM
+bVV
+bWj
+bWJ
+bXl
+bXC
+bVV
+bVV
+bSM
+bSM
+bSM
+bZr
+bZr
+bSM
+caK
+caG
+cbE
+caG
+ccF
+cdc
+cdw
+caG
+cbE
+caG
+ceE
+bEK
aab
aab
aab
@@ -93932,24 +94220,24 @@ aab
aab
aad
aaB
-aaI
+aaJ
aaU
aaU
-abt
-abN
-abN
-abN
-acH
+abv
+abP
+abP
+abP
+acG
aaU
aaU
-aaI
+aaJ
aad
-aeX
+aeW
aah
-acV
+afJ
aah
-aaH
-agb
+aaI
+ahB
aae
aad
aab
@@ -93959,105 +94247,105 @@ aaa
aaa
aaa
aaV
-arb
-asm
-aua
-avC
-axp
-ayQ
-aAo
+arI
+asS
+auF
+awk
+axX
+azz
+aAZ
aaV
-aDB
-aFy
-ahr
-aIT
-aKO
-aMy
-aOl
-ahr
-aRA
-aTb
-aHt
-ygw
-aXt
-aYx
-aZQ
-baZ
-baZ
-baZ
-baZ
-baZ
-aZQ
-bjq
-bjq
-bjq
-bjq
-bjq
-aZQ
-aYx
-aYx
-btH
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-buK
-bFs
-aYx
-bzQ
-aYx
-aRQ
-aWo
-aTd
-aTd
-aTd
-aTd
-aWo
-bRL
-bgO
-bgZ
-bPI
-beo
-bfq
-bfH
-bin
-bix
-bUz
-bkf
-bmj
-bIJ
-bUz
-bUz
-bpk
-bpt
-bqs
-bqG
-brE
-bVP
-bsw
-bUz
-bUz
-bUz
-bUz
-bUz
-bUz
-bPK
+aEo
+aGl
+ahC
+aJE
+aLz
+aNn
+aPa
+ahC
+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
+bHp
+aZs
+bJb
+bJS
+bJT
+bJT
+bJT
+bJT
+bJS
+bGr
+bOQ
+bPA
+bOt
+bQu
+bQW
+bRv
+bRO
+bSm
+bSM
+bTn
+bTV
+bUC
+bSM
+bSM
+bVW
+bWk
+bWK
+bXm
+bXD
+bXU
+bYh
+bSM
+bSM
+bSM
+bSM
+bSM
+bSM
+caL
+cbg
cbF
-dmA
-cbF
-gql
-ccT
-cbF
-cbF
-rbe
-cbF
-pLP
-bSx
+cbg
+cbM
+cdd
+cbg
+cbg
+cec
+cbg
+ceF
+bEK
aab
aab
aaa
@@ -94189,26 +94477,26 @@ aaa
aaa
aad
aaC
-aaI
+aaJ
aaU
-aaZ
-abu
-abu
-acc
-abu
-acI
-acX
+aba
+abw
+abw
+ace
+abw
+acH
+acW
aaU
adN
aad
-adk
-acB
+aeX
+afq
aad
-abi
-abk
+abj
+abl
aaC
aah
-aiV
+agD
aaa
aab
aaa
@@ -94216,105 +94504,105 @@ aaa
aaa
aaa
aaV
-arc
-abD
-aub
-avD
-axq
-abD
-aAp
+arJ
+abF
+auG
+awl
+axY
+abF
+aBa
aaV
-aDC
-aFx
-aHx
-aIU
-aKP
-aMz
-aOm
-ahr
-aRB
-aTc
-aHt
-aVT
-aXt
-aYz
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZQ
-aZS
-aZT
-aZQ
-buJ
-bvP
-aZQ
-buJ
-bzB
-bvP
-aZQ
-buJ
-bzB
-bvP
-aZQ
-cuQ
-bBz
-aYx
-aRQ
-aTd
-bbn
-amA
-amA
-buf
-bxD
-bRL
-bfw
-bfv
-bfI
-bfw
-bfw
-bfw
-biz
-biy
-bUz
-bkt
-bmk
-gtz
-boa
-boe
-gtH
-bpv
-ykV
-gtH
-gtH
-gtH
-gtH
-brf
-gtH
-bsL
-bsX
-bsX
-bUz
-bPL
-cbE
-cbE
-cbE
-cbE
-cbE
-nGz
-cbE
-cbE
-cbE
-dbQ
-bSx
+aEp
+aGk
+aIm
+aJF
+aLA
+aNo
+aPb
+ahC
+aSr
+aTT
+aIi
+aWM
+aYn
+aZr
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+baI
+bry
+bsQ
+baI
+bvd
+bwb
+baI
+bvd
+bzU
+bwb
+baI
+bvd
+bzU
+bwb
+baI
+bGq
+bHq
+aZs
+bJb
+bJT
+bKO
+bLx
+bLx
+bML
+bNA
+bGr
+bOR
+bPB
+bPV
+bOR
+bOR
+bOR
+bRP
+bSn
+bSM
+bTo
+bTW
+bUD
+bUW
+bVw
+bVX
+bWl
+bWL
+bVX
+bVX
+bVX
+bVX
+bYy
+bVX
+bYY
+bZs
+bZs
+bSM
+bNO
+cbh
+cbh
+cbh
+cbh
+cbh
+cdx
+cbh
+cbh
+cbh
+ceG
+bEK
aab
aab
aaa
@@ -94446,132 +94734,132 @@ aaa
aaa
aad
aaD
-aaI
+aaJ
aaU
-aba
-abv
-abO
-acd
-abO
-acJ
-acY
+abb
+abx
+abQ
+acf
+abQ
+acI
+aby
aaU
-aaI
+aaJ
aad
aad
aad
aad
-agl
-aaI
+agh
+aaJ
aaA
aah
-aiV
-aiV
-aiV
-aiV
-amy
-aiV
-aiV
+agD
+agD
+agD
+agD
+amR
+agD
+agD
aaV
-ard
-asn
-auc
+arK
+asT
+auH
aaV
-axr
-ard
-asn
+axZ
+arK
+asT
aaV
-aDD
-aFz
-aHy
-aIV
-aKQ
-abC
-aOn
-ahr
-aRC
-cnX
-aHt
-aVU
-aXt
-aYH
-bfh
-bha
-bhi
-bhV
-biA
-bgQ
-ylv
-bkQ
-bhi
-bhV
-bmG
-bgQ
-bnA
-bgQ
-bgQ
-boX
-bgQ
-bhV
-bqa
-bgQ
-bgQ
-bgQ
-bgQ
-bhV
-bgQ
-bgQ
-btJ
-bgQ
-bBz
-apU
-aRQ
-aXx
-bbs
-bcT
-bhb
-bug
-byf
-bRL
-bfx
-bfw
-bfK
-bgW
-bhc
-bgW
-bJY
-bKa
-bUz
-bkz
-bmn
-ykR
-bUz
-boR
-bpn
-bpz
-bqt
-bqt
-bqt
-bqt
-bsy
-bVa
-bVa
-bsM
-bsZ
-bsZ
-bUz
-bPL
-cwf
-oLn
-ccc
-ccz
-ccV
-cdh
-mEF
-anz
-cwf
-vFt
-bSx
+aEq
+aGm
+aIn
+aJG
+aLB
+abE
+aPc
+ahC
+aSs
+aTU
+aIi
+aWN
+aYn
+aZx
+baJ
+bbK
+bdn
+beQ
+bgg
+bbG
+biN
+bjZ
+bdn
+beQ
+bnV
+bbG
+bqA
+bbG
+bbG
+btV
+bbG
+beQ
+bxq
+bbG
+bbG
+bbG
+bbG
+beQ
+bbG
+bbG
+bFq
+bbG
+bHq
+bIe
+bJb
+bJU
+bKP
+bLy
+bMg
+bMM
+bNB
+bGr
+bOS
+bOR
+bPW
+bQv
+bQX
+bQv
+bRQ
+bSo
+bSM
+bTp
+bTX
+bUE
+bSM
+bVx
+bVY
+bWm
+bWM
+bWM
+bWM
+bWM
+bYi
+bWa
+bWa
+bYZ
+bZt
+bZt
+bSM
+bNO
+cbi
+cbG
+cch
+ccG
+cde
+cdy
+cdP
+ced
+cbi
+ceH
+bEK
aab
aab
aaa
@@ -94703,132 +94991,132 @@ aaa
aaa
aad
aad
-aaI
+aaJ
aaU
-aba
-acY
-abP
-ace
-abP
-cgF
-acY
-clz
-acr
-acz
-acz
+abb
+aby
+abR
+acg
+abR
+acJ
+aby
+adq
+act
+acB
+acB
aaT
aaT
-agm
-agM
+agi
+agO
aad
aah
aah
aah
-abG
+abI
aah
-alA
-alB
-abK
+amS
+anY
+abM
aaV
-are
-aso
-aud
+arL
+asU
+auI
aaV
-axs
-ayR
-aAq
+aya
+azA
+aBb
aaV
-aDE
-aFA
-aHz
-aIW
-aKR
-abC
-aOo
-ahr
-aRD
-aTc
-aHt
-aVV
-aXu
-aYJ
-aZP
-bbb
-bcy
-bcy
-bfi
-bcy
-bcy
-bcy
-bcy
-bcy
-bcy
-bcy
-bcy
-bcy
-bcy
-bbb
-bcy
-bcy
-bvQ
-bxn
-bcy
-bcy
-bcy
-bcy
-bcy
-bst
-bta
-bta
-bBA
-aYx
-aRQ
-aTd
-bbs
-bIK
-bIK
-bug
-byw
-bRL
-bfy
-bfw
-bfL
-bgX
-bhd
-bic
-bfw
-ykN
-bUz
-bUz
-bmo
-bUz
-bUz
-boi
-bpo
-bpW
-bVa
-bVa
-ykZ
-bWK
-bKj
-ylg
-bVa
-bsM
-bsZ
-btk
-bUz
-dnQ
-cbE
-cbD
-opA
-lfd
-ccf
-ccf
-ccf
-obO
-cbE
-iIC
-bSx
+aEr
+aGn
+aIo
+aJH
+aLC
+abE
+aPd
+ahC
+aSt
+aTT
+aIi
+aWO
+aYo
+aZy
+baK
+bbL
+bdo
+bdo
+bgh
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bdo
+bbL
+bdo
+bdo
+bxr
+byP
+bdo
+bdo
+bdo
+bdo
+bdo
+bEB
+bFr
+bFr
+bHr
+aZs
+bJb
+bJT
+bKP
+bIp
+bIp
+bMM
+bNC
+bGr
+bOT
+bOR
+bPX
+bPb
+bQY
+bRw
+bOR
+bSp
+bSM
+bSM
+bTY
+bSM
+bSM
+bVy
+bVZ
+bWn
+bWa
+bWa
+bXE
+bWO
+bWP
+bYz
+bWa
+bYZ
+bZt
+bZS
+bSM
+caM
+cbh
+cbH
+cci
+ccH
+cdf
+cdf
+cdf
+cee
+cbh
+ceI
+bEK
aab
aaa
aaa
@@ -94960,15 +95248,15 @@ aaa
aaa
aaa
aad
-aaJ
+aaK
aaU
-aba
-abx
-abP
-acf
-abP
-acL
-acZ
+abb
+abz
+abR
+ach
+abR
+acK
+acX
aaU
aaU
aaV
@@ -94978,114 +95266,114 @@ aaV
aaV
aaV
aaV
-abG
+abI
aae
aah
aah
aah
aae
aah
-abG
+abI
aaV
-arf
-asp
-aue
+arM
+asV
+auJ
aaV
-axt
-ayS
-aAr
+ayb
+azB
+aBc
aaV
-aDz
-aFx
-aHA
-aIX
-aKS
-avC
-aOp
-ahr
-aRE
-aTe
-aHt
-aVW
-aXt
-aYK
-aVG
-aYx
-bcz
-aYx
-bfj
-aYx
-bcz
-blU
-bcz
-aYx
-bcz
-aYx
-bcz
-ylK
-bcz
-sVQ
-buL
-ylV
-bvR
-byt
-ymh
-bzC
-bzC
-bCy
-aYx
-aXt
-aYx
-blU
-arv
-avh
-ykq
-aTd
-bbs
-bda
-bia
-bug
-byx
-bRL
-bfz
-bfw
-bgg
-bgY
-bhe
-bid
-bfw
-biB
-bjG
-bkB
-bmt
-ykS
-bUE
-bWj
-bVa
-bWh
-bVa
-bVa
-ykZ
-bWK
-bKj
-ylg
-bVa
-bsM
-bsz
-bsz
-bUz
-caW
-amB
-nYV
-ags
-coD
-ccf
-ccf
-ccf
-saK
-sDJ
-svt
-bSx
+aEm
+aGk
+aIp
+aJI
+aLD
+awk
+aPe
+ahC
+aSu
+aTV
+aIi
+aWP
+aYn
+aZz
+aWB
+aZs
+bdp
+aZs
+bgi
+aZs
+bdp
+bka
+bdp
+aZs
+bdp
+aZs
+bdp
+brE
+bdp
+btW
+bvf
+bwc
+bxs
+byQ
+bzV
+bAT
+bAT
+bCL
+aZs
+aYn
+aZs
+bka
+bHs
+bIh
+bJc
+bJT
+bKP
+bLz
+bMh
+bMM
+bND
+bGr
+bOU
+bOR
+bPY
+bQw
+bQZ
+bRx
+bOR
+bSq
+bSN
+bTq
+bTZ
+bUF
+bUX
+bVz
+bWa
+bWo
+bWa
+bWa
+bXE
+bWO
+bWP
+bYz
+bWa
+bYZ
+bZu
+bZu
+bSM
+caN
+cbj
+cbI
+ccj
+ccI
+cdf
+cdf
+cdf
+cef
+cet
+ceJ
+bEK
aab
aab
aaa
@@ -95217,132 +95505,132 @@ aaa
aaa
aaa
aad
-aaI
+aaJ
aaU
-abb
+abc
+abA
+abR
+aci
+abR
+acK
aby
-abP
-acg
-abP
-acL
-acY
-adv
+adr
aaU
-aeq
+aeu
aeY
-aft
-afL
-agn
-abC
-ahr
-ahr
-ahr
-ahr
-ahr
+afr
+afK
+agj
+abE
+ahC
+ahC
+ahC
+ahC
+ahC
aah
-ahr
-ahr
-ahr
+ahC
+ahC
+ahC
aaV
aaV
-asq
-auf
+asW
+auK
aaV
-axu
-ard
-asn
+ayc
+arK
+asT
aaV
-aDz
-aFx
-aHB
-aIY
-aez
-aMA
-aOq
-ahr
-aRF
-aTf
-aPU
-aVG
-aXo
-aYN
-bfJ
-eWc
-lDe
-bfJ
-bfJ
-tZA
-lDe
-ylz
-bah
-bkw
-tww
-bah
-bkw
-rSU
-quw
-pQW
-ylL
-bxs
-bvS
-ymb
-bxs
-bAC
-bAC
-aUB
-aVG
-aXo
-aVG
-bRL
-amf
-apt
-bRL
-aXC
-bbt
-aYS
-aYS
-buN
-aXC
-bRL
-bfB
-bfw
-bfw
-bfw
-bhf
-bfw
-bfw
-biB
-bJJ
-ykP
-bJl
-bJG
-gtC
-bWj
-bVa
-bWh
-bVa
-bVa
-bVa
-bVa
-bVa
-bVa
-bVa
-bKi
-bUz
-bUz
-bUz
-hoM
-cbE
-opk
-fAO
-qbe
-ccf
-ccf
-ccf
-obO
-cbE
-pTt
-bSx
+aEm
+aGk
+aIq
+aJJ
+aeD
+aNp
+aPf
+ahC
+aSv
+aTW
+aQL
+aWB
+aYk
+aZA
+baL
+bbM
+bdq
+baL
+baL
+bhw
+bdq
+bkb
+bkU
+bmx
+bnW
+bkU
+bmx
+brF
+bsS
+btX
+bvg
+bwd
+bxt
+byR
+bwd
+bAU
+bAU
+aVs
+aWB
+aYk
+aWB
+bGr
+bHt
+bIi
+bGr
+bJV
+bKQ
+bLA
+bLA
+bMN
+bJV
+bGr
+bOV
+bOR
+bOR
+bOR
+bRa
+bOR
+bOR
+bSq
+bSO
+bTr
+bUa
+bUG
+bUY
+bVz
+bWa
+bWo
+bWa
+bWa
+bWa
+bWa
+bWa
+bWa
+bWa
+bZa
+bSM
+bSM
+bSM
+caO
+cbh
+cbJ
+cck
+ccJ
+cdf
+cdf
+cdf
+cee
+cbh
+ceK
+bEK
aab
aab
aab
@@ -95474,132 +95762,132 @@ aaa
aaa
aaa
aad
-aaI
+aaJ
aaU
-abc
-abx
-abP
-acf
-abP
-acM
-acY
-adw
+abd
+abz
+abR
+ach
+abR
+acL
+aby
+ads
aaU
-aer
+aev
aeZ
-afu
-afM
-ago
-agN
+afs
+afL
+agk
+agP
aaV
-aie
-aiW
-ajF
-ahr
+ait
+ajm
+ajS
+ahC
aah
-ahr
-aie
-aoD
-ajF
+ahC
+ait
+api
+ajS
aaV
-asr
-aug
-avE
-aug
-aug
-aug
-aBI
-aDF
-aFB
-aHC
-aIY
-aKT
-aMB
-aOr
-ahr
-aRG
-aTg
-aPU
-aVX
-aXv
-aYO
-bfJ
-fnz
-kug
-gsy
-ylq
-bfl
-bgy
-ylA
-bjt
-bkx
-bkx
-bnC
-bkx
-rDP
-kWE
-bfA
-ylM
-bxs
-ylW
-wJR
-byu
-mbs
-mbs
-aUB
-bDu
-aXt
-apP
-aht
-asg
-aST
-aVS
-aRT
-bbu
-beq
-aRT
-buO
-byA
-bRL
-bfC
-bfw
-bfw
-bfw
-bfw
-bfw
-bfw
-biC
-bUz
-bkE
-bmt
-bUB
-gtD
-bWj
-bVa
-bWh
-bqu
-bqu
-bVa
-bVa
-bVa
-bVa
-bVa
-bsM
-bsX
-bsX
-bUz
-pRK
-cwf
-xob
-fAO
-agr
-iXc
-mUk
-cdt
-opA
-cwf
-cdO
-bSx
+asX
+auL
+awm
+auL
+auL
+auL
+aCw
+aEs
+aGo
+aIr
+aJJ
+aLE
+aNq
+aPg
+ahC
+aSw
+aTX
+aQL
+aWQ
+aYp
+aZB
+baL
+bbN
+bdr
+beR
+bgj
+bhx
+biO
+bkc
+bkV
+bmy
+bmy
+bpr
+bmy
+brG
+bsT
+btY
+bvh
+bwd
+bxu
+byS
+bzW
+bAV
+bAV
+aVs
+bDA
+aYn
+bFs
+bGs
+bHu
+bIj
+bJd
+bJW
+bKR
+bLB
+bJW
+bMO
+bNE
+bGr
+bOW
+bOR
+bOR
+bOR
+bOR
+bOR
+bOR
+bSr
+bSM
+bTs
+bTZ
+bTu
+bUZ
+bVz
+bWa
+bWo
+bWN
+bWN
+bWa
+bWa
+bWa
+bWa
+bWa
+bYZ
+bZs
+bZs
+bSM
+caP
+cbi
+cbK
+cck
+ccK
+cdg
+cdz
+cdQ
+cci
+cbi
+ceq
+bEK
aab
aab
aab
@@ -95731,132 +96019,132 @@ aaa
aaa
aaa
aad
-aaK
+aaL
aaU
-abd
+abe
+abA
+abR
+acg
+abR
+acM
aby
-abP
-ace
-abP
-acN
-acY
-adx
+adt
aaU
-aes
+aew
afa
-afv
-afN
-agp
-abC
+aft
+afM
+agl
+abE
aaV
-aif
-aiX
-ajG
-ahr
-abG
-ahr
-aif
-aoE
-ajG
+aiu
+ajn
+ajT
+ahC
+abI
+ahC
+aiu
+apj
+ajT
aaV
-ass
-auh
-avF
-avF
-ayT
-aAs
-aBJ
-aDG
-aFC
-aHD
-aIZ
+asY
+auM
+awn
+awn
+azC
+aBd
+aCx
+aEt
+aGp
+aIs
+aJK
aaV
aaV
aaV
-ahr
-aRH
-aTh
-aPU
-any
-aXq
-aYP
-bfJ
-ygJ
-kqR
-bjV
-bjV
-bfn
-oNt
-ylB
-xUY
-bky
-wel
-bnD
-bnD
-bnD
-uXm
-bsx
-ylN
-bxs
-ylX
-ymc
-bzD
-peG
-dYG
-aUB
-bfN
-aXt
-aqB
-ahu
-aXs
-bFP
-aSs
-aSs
-aSs
-ber
-aSs
-buV
-byD
-bbA
-bCt
-bfw
-bfL
-bgX
-bhd
-bic
-bfw
-biB
-bUz
-bkO
-bmt
-bUB
-bVQ
-bWj
+ahC
+aSx
+aTY
+aQL
+aIH
+aYq
+aZC
+baL
+bbO
+bds
+beS
+beS
+bhy
+biP
+bkd
+bkW
+bmz
+bnX
+bps
+bps
+bps
+bsU
+btZ
+bvi
+bwd
+bxv
+byT
+bzX
+bAW
+bBO
+aVs
+bDB
+aYn
+bFt
+bGt
+bHv
+bIk
+bJe
+bJe
+bJe
+bLC
+bJe
+bMP
+bNF
+bOp
+bOX
+bOR
+bPX
+bPb
+bQY
+bRw
+bOR
+bSq
+bSM
+bTt
+bTZ
+bTu
bVa
-bWh
-bWK
-bWK
-bVa
-bVa
-bqu
-bqu
-bVa
-bsM
-bsZ
-bKn
-bUz
-pRK
-cbE
-cbE
-cbE
-cbE
-cbE
-nGz
-cbE
-cbE
-cbE
-cdO
-bSx
+bVz
+bWa
+bWo
+bWO
+bWO
+bWa
+bWa
+bWN
+bWN
+bWa
+bYZ
+bZt
+bZT
+bSM
+caP
+cbh
+cbh
+cbh
+cbh
+cbh
+cdx
+cbh
+cbh
+cbh
+ceq
+bEK
aab
aab
aab
@@ -95988,132 +96276,132 @@ aaa
aaa
aaa
aad
-aaI
+aaJ
aaU
-abc
-abz
-abu
-ach
-abu
-acO
-acY
+abd
+abB
+abw
+acj
+abw
+acN
+aby
aaU
aaU
-clB
+aex
aaV
aaV
-clL
+afN
aaV
aaV
aaV
aaV
-aiY
+ajo
aaV
-ahr
-cnT
-ahr
+ahC
+abG
+ahC
aaV
-aoF
+apk
aaV
aaV
-ast
-aui
-avG
-avG
-ayU
-aAt
-aAt
-aAt
-aAt
-aAt
-aJa
-aAt
-aMC
-aOs
-aPU
-aPU
-aTi
-aPU
-axP
-aLc
-aYQ
-bfJ
-aZU
-heY
-wYw
-bfp
-bgA
-ylw
-ylz
-bju
-kja
-lho
-kja
-kja
-gcW
-bre
-bsx
-ylO
-bxs
-ylY
-ymd
-ymi
-bAE
-bAE
-aUB
-bEx
-bCB
-asD
-ajN
-amE
-apQ
-awc
-aYL
-yks
-bes
-bib
-aYS
-byG
-aRQ
-bCE
-bfw
-bgg
-bgY
-bhe
-bid
-bfw
-biB
-bjI
-bUB
-bmx
-bUB
-gtE
-bWj
-bVa
-bWh
-bKj
-bWK
-bVa
-bVa
-bWK
-bWK
-bVa
-bsM
-bsZ
-btk
-bUz
-bJi
-vyF
-olp
-orx
-ccB
-lFh
-lFh
-lFh
-lFh
-lFh
-dsE
-bSx
+asZ
+auN
+awo
+awo
+azD
+aBe
+aBe
+aBe
+aBe
+aBe
+aJL
+aBe
+aNr
+aPh
+aQL
+aQL
+aTZ
+aQL
+awK
+aLP
+aZD
+baL
+bbP
+bdt
+beT
+bgk
+bhz
+biQ
+bkb
+bkX
+bmA
+bnY
+bmA
+bmA
+brH
+bsV
+btZ
+bvj
+bwd
+bxw
+byU
+bzY
+bAX
+bAX
+aVs
+bDC
+bEC
+bFu
+bGu
+bHw
+bIl
+bJf
+bJX
+bKS
+bLD
+bMi
+bLA
+bNG
+bJb
+bOY
+bOR
+bPY
+bQw
+bQZ
+bRx
+bOR
+bSq
+bSP
+bTu
+bUb
+bTu
+bVb
+bVz
+bWa
+bWo
+bWP
+bWO
+bWa
+bWa
+bWO
+bWO
+bWa
+bYZ
+bZt
+bZS
+bSM
+caQ
+cbk
+cbL
+ccl
+ccL
+cdh
+cdh
+cdh
+cdh
+cdh
+ceL
+bEK
aab
aab
aab
@@ -96245,132 +96533,132 @@ aad
aad
aad
aad
-aaI
+aaJ
aaU
-abe
-abA
-abA
-aci
-abA
-acP
-ada
+abf
+abC
+abC
+ack
+abC
+acO
+acY
aaU
adO
-aeu
+aey
afb
-afw
-clM
+afu
+afO
afb
-agO
-ahs
-aig
-aeu
-ajH
+agQ
+ahD
+aiv
+aey
+ajU
afb
-alz
+alL
afb
afb
-aoG
-aig
-arg
-asu
-aui
-avG
-avG
-ayV
-aAu
-aBK
-aDH
-aFD
-aHE
-aJb
-aAt
-aMD
-avK
-avK
-avK
-aTj
-aPU
-chV
-aLc
-aYR
-bfJ
-bbc
-ajI
-kgh
-bjV
-yls
-bgB
-ylz
-bjv
-cwx
-blV
-uga
-boT
-kja
-bre
-bsx
-ylP
-bxs
-ylZ
-yme
-bxs
-bxs
-bxs
-aUB
-aUB
-bDy
-byB
-bRL
-bRL
-bRL
-bRL
-arn
-aWl
-aWl
-bij
-aSs
-btb
-bdw
-bCF
-bfw
-bgk
-bfw
-bgk
-bfw
-bfw
-biB
-bjN
-bUB
-bmy
-bUB
-gtF
-bWj
-bVa
-bWh
-bXg
-bXg
-bVa
-bVa
-bKj
-bWK
-bVa
-bsM
-bsz
-bsz
-bUz
-gvo
-pqr
-gql
-uSR
-xIy
-bSv
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
+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
+bdu
+beU
+beS
+bhA
+biR
+bkb
+bkY
+bmB
+bnZ
+bpt
+bqB
+bmA
+bsV
+btZ
+bvk
+bwd
+bxx
+byV
+bwd
+bwd
+bwd
+aVs
+aVs
+bED
+bFv
+bGr
+bGr
+bGr
+bGr
+bJY
+bJR
+bJR
+bMj
+bJe
+bNH
+bOq
+bOZ
+bOR
+bPZ
+bOR
+bPZ
+bOR
+bOR
+bSq
+bSQ
+bTu
+bUc
+bTu
+bVc
+bVz
+bWa
+bWo
+bWQ
+bWQ
+bWa
+bWa
+bWP
+bWO
+bWa
+bYZ
+bZu
+bZu
+bSM
+caR
+cbl
+cbM
+ccm
+ccM
+bGC
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
aab
aab
aab
@@ -96498,131 +96786,131 @@ aaa
aad
aae
aai
-aam
-aam
+aan
+aan
aah
aad
-aaI
+aaJ
aaU
-abf
-abB
-abQ
-acj
-act
-acQ
-adb
+abg
+abD
+abS
+acl
+acv
+acP
+acZ
aaU
adP
-aev
+aez
afc
-afx
-afx
-afx
-agP
-afx
-cmq
-afx
-afx
-cmJ
-akE
-afx
-afx
-aoH
-afx
-arh
-asv
-auj
-avH
-avH
-avG
-aAv
-aBL
-aDI
-aFE
-aHF
-aJc
-aAt
-aME
-aOt
-aPV
-avK
-aTj
-aPU
-aJs
-aLc
-aZO
-bfJ
-ygJ
-kqR
-bjV
-bjV
-ylt
-alF
-ylz
-xIT
-mRk
-blW
-haU
-mWw
-kja
-bre
-bsx
-ylQ
-bxs
-bxq
-bvW
-drP
-byv
-bxs
-aUB
-aYM
-bvf
-bDI
-bIE
-bRL
-anv
-apR
-ayF
-aTd
-bet
-bil
-amA
-byK
-bej
-bDk
-bEA
-bgI
-bgI
-ykF
-ykL
-ykM
-biD
-bjT
-bUB
-bmt
-bUB
-bUE
-bWj
-bVa
-bWh
-bVa
-bVa
-bVa
-bVa
-bXg
-bXg
-bVa
-bKi
-bUz
-bUz
-bUz
-bSv
-jnz
-bQp
-tFi
-foK
-bSv
-bSx
+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
+bbO
+bds
+beS
+beS
+bhB
+biS
+bkb
+bkZ
+bmC
+boa
+bpu
+bqC
+bmA
+bsV
+btZ
+bvl
+bwd
+bxy
+byW
+bzZ
+bAY
+bwd
+aVs
+bDD
+bEE
+bFw
+bGv
+bGr
+bIm
+bJg
+bJZ
+bJT
+bLE
+bMk
+bLx
+bNI
+bOr
+bPa
+bPC
+bQa
+bQa
+bRb
+bRy
+bRR
+bSs
+bSR
+bTu
+bTZ
+bTu
+bUX
+bVz
+bWa
+bWo
+bWa
+bWa
+bWa
+bWa
+bWQ
+bWQ
+bWa
+bZa
+bSM
+bSM
+bSM
+bGC
+cbm
+bMU
+ccn
+ccN
+bGC
+bEK
aaa
aaa
aaa
@@ -96757,129 +97045,129 @@ aaf
aaj
aaj
aaj
-aat
+aav
aad
-aaL
+aaM
aaV
-abg
-abC
-abR
-abR
-abR
-acR
-adc
-ady
+abh
+abE
+abT
+abT
+abT
+acQ
+ada
+adu
adQ
-aew
-aja
-cra
-crh
-crn
-aja
-aja
-aja
-aja
-aja
-cth
-crZ
-cth
-cti
-cti
-cti
-cti
-asw
-auk
-avI
-axv
-ayW
-aAw
-aBM
-aDJ
-aFF
-aHG
-aJd
-aAt
-aMF
-aOu
-aPW
-avK
-aTk
-aPU
-aVY
-aLc
-aZO
-bfJ
-bbe
-bcC
-wYw
-bfp
-bgC
-ylx
-ylz
-bjw
-bcL
-blX
-bnE
-boU
-kja
-brg
-bsB
-ylR
-bxs
-dvg
-bvW
-ymj
-ymk
-apV
-apV
-aTx
-bfm
-bCz
-bHV
-apV
-anA
-apS
-aNb
-bbw
-bfD
-biv
-buX
-byL
-bek
-bfw
-bEC
-bfw
-bfw
-ykH
-bfw
-bip
-biF
-bUz
-ykQ
-bmt
-bUB
-bGl
-bWj
-bVa
-bWh
-bVa
-bVa
-bVa
-bVa
-bVa
-bVa
-bVa
-bsM
-bsX
-bsX
-bUz
-bIO
-bSx
-bSx
-tsg
-bIP
-bSx
-bSx
+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
+bbR
+bdv
+beT
+bgk
+bhC
+biT
+bkb
+bla
+bmD
+bob
+bpv
+bqD
+bmA
+bsW
+bua
+bvm
+bwd
+bxz
+byW
+bAa
+bAZ
+bBP
+bBP
+bDE
+bEF
+bFx
+bGw
+bBP
+bIn
+bJh
+bKa
+bKT
+bLF
+bMl
+bMQ
+bNJ
+bOs
+bOR
+bPD
+bOR
+bOR
+bRc
+bOR
+bRS
+bSt
+bSM
+bTv
+bTZ
+bTu
+bVd
+bVz
+bWa
+bWo
+bWa
+bWa
+bWa
+bWa
+bWa
+bWa
+bWa
+bYZ
+bZs
+bZs
+bSM
+caS
+bEK
+bEK
+cco
+ccO
+bEK
+bEK
aaa
aaa
aaa
@@ -97014,129 +97302,129 @@ aag
aaj
aaj
aaj
-aat
+aav
aaE
-aaI
+aaJ
aaV
-abh
-abD
-abD
-ack
-acu
-abD
-abD
-abD
+abi
+abF
+abF
+acm
+acw
+abF
+abF
+abF
adR
-aex
-aja
-crb
-cri
-cro
-crv
-ajP
-crI
-ajP
-cmE
-crR
-csa
-csj
-cst
-csD
-csO
-cti
-asx
-auk
-avJ
-axw
-ayX
-aAt
-aBN
-aDK
-aFG
-aHH
-aJe
-aAt
-aMG
-aMG
-aPX
-avK
-aTj
-aPU
-axP
-aLc
-aZO
-bfJ
-ygK
-inc
-dVI
-dVI
-ylu
-xUH
-ylz
-qzp
-bkA
-blY
-haU
-mWw
-kja
-bre
-bsx
-ylS
-bxs
-bxt
-ymf
-byz
-yjJ
-apV
-aUw
-bcW
-biw
-bFR
-bHW
-apV
-anB
-apT
-aOF
-bIz
-bfE
-bjF
-buZ
-byN
-bRL
-bgX
-bqx
-bFB
-ykB
-ykH
-bih
-biq
-biJ
-bjG
-bkT
-bJD
-bJH
-bHE
-gtL
-chS
-bpX
-bYa
-bYa
-ykY
-yla
-ylb
-ylg
-bVa
-bsM
-bsZ
-bsZ
-bUz
-bSv
-bSv
-cbG
-dTQ
-iTM
-bJE
-bSx
+aeB
+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
+bbS
+bdw
+beV
+beV
+bhD
+biU
+bkb
+blb
+bmE
+boc
+bpu
+bqC
+bmA
+bsV
+btZ
+bvn
+bwd
+bxA
+byX
+bAb
+bBa
+bBP
+bCM
+bDF
+bEG
+bFy
+bGx
+bBP
+bIo
+bJi
+bKb
+bKU
+bLG
+bMm
+bMR
+bNK
+bGr
+bPb
+bPE
+bQb
+bQx
+bRc
+bRz
+bRT
+bSu
+bSN
+bTw
+bUd
+bUH
+bVe
+bVA
+bWb
+bWp
+bWR
+bWR
+bXF
+bXV
+bYj
+bYz
+bWa
+bYZ
+bZt
+bZt
+bSM
+bGC
+bGC
+cbN
+ccp
+ccP
+cdi
+bEK
aaa
aaa
aaa
@@ -97271,12 +97559,12 @@ aaf
aaj
aaj
aaj
-aau
+aaw
aad
-aaM
+aaN
aaV
aaV
-cnT
+abG
aaV
aaV
aaV
@@ -97284,116 +97572,116 @@ aaV
aaV
aaV
adS
-aey
-aja
-crc
-crj
-crp
-crw
-crD
-crJ
-cmy
-crO
-crS
-csb
-csP
-csP
-csP
-csP
-ctb
-asy
-aul
-avK
-axx
-ayY
-aAx
-aBO
-aDL
-aFH
-aHI
-aJf
-aAt
-avK
-avK
-aPY
-avK
-aTl
-aPU
-aVZ
-aLc
-aZO
-bfJ
-bbf
-bcD
-fWU
-fWU
-bgE
-yly
-ylz
-bjx
-bcN
-bcL
-bnG
-boV
-bqe
-brh
-bsC
-ylT
-bxs
-yma
-bxr
-coh
-coi
-apV
-aWm
-bcW
-bIH
-bJe
-bIB
-apV
-bIK
-apX
-aOG
-bID
-bfF
-bjL
-bvd
-bzH
-bPI
-bPI
-bPI
-bPI
-bPI
-ykI
-bPI
-bfw
-bhh
-bJJ
-bkX
-bmz
-bUB
-gtB
-gtL
-bVa
-bWh
-bVa
-bVa
-ykZ
-bWK
-bKj
-ylg
-bVa
-bsM
-bKl
-btk
-bUz
-kqA
+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
+bbT
+bdx
+beW
+beW
+bhE
+biV
+bkb
+blc
+bmF
+bmD
+bpw
+bqE
+brI
+bsX
+bub
+bvo
+bwd
+bxB
+byY
+bAc
+bBb
+bBP
+bCN
+bDF
+bEH
+bFz
+bGy
+bBP
+bIp
+bJj
+bKc
+bKV
+bLH
+bMn
+bMS
+bNL
+bOt
+bOt
+bOt
+bOt
+bOt
+bRd
+bOt
+bOR
bSv
-lpG
-tXU
-kLC
-bJE
-bSx
+bSO
+bTx
+bUe
+bTu
+bVf
+bVA
+bWa
+bWo
+bWa
+bWa
+bXE
+bWO
+bWP
+bYz
+bWa
+bYZ
+bZv
+bZS
+bSM
+caT
+bGC
+cbO
+ccq
+ccQ
+cdi
+bEK
aaa
aaa
aaa
@@ -97526,131 +97814,131 @@ aaa
aad
aah
aak
-aan
-aaq
-aav
+aao
+aar
+aax
aad
-aaI
+aaJ
aah
-abi
+abj
aae
aah
aah
-acv
-abS
-abS
-clA
+acx
+abU
+abU
+adv
adT
-aez
-aja
-crd
-alD
-crq
-crx
-crE
-crK
-cmz
-crP
-crT
-csc
-csl
-csv
-csF
-csQ
-ctc
-asz
-alz
-avL
-axy
-ayZ
-aAy
-aBP
-aDM
-aFI
-aHJ
-aJg
-avK
-aMH
-aOv
-aPZ
-aRI
-aTj
-aPU
-ybr
-aLc
-bbv
-bfJ
-bfJ
-bfJ
-bdW
-bqC
-bgF
-bfJ
-ylz
-bjy
-bcN
-yiR
-bjy
-bah
-bah
-bqf
-qgR
-ylU
-bxs
-buS
-bxs
-bxs
-bxs
-apV
-aUw
-bcW
-biw
-bHQ
-ykl
-apV
-aoM
-aqa
-ayF
-bby
-bet
-bjM
-bId
-bzI
-bPI
-bDl
-bJU
-bmi
-bKx
-ykJ
-bPI
-bfw
-bhh
-bUz
-bnB
-bnF
-bnB
-bUz
-ykT
-bpp
-bqb
-bZV
-bZV
-bZV
-bZV
-bZV
-bZV
-bZV
-boc
-bsz
-bsz
-bUz
-btZ
+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
+bvp
+bwd
+bxC
+bwd
+bwd
+bwd
+bBP
+bCM
+bDF
+bEG
+bFA
+bGz
+bBP
+bIq
+bJk
+bJZ
+bKW
+bLE
+bMo
+bMT
+bNM
+bOt
+bPc
+bPF
+bQc
+bQy
+bRe
+bOt
+bOR
bSv
-cbG
-yln
-vnl
-bJE
-bSx
+bSM
+bTy
+bUf
+bTy
+bSM
+bVB
+bWc
+bWq
+bWS
+bWS
+bWS
+bWS
+bWS
+bWS
+bWS
+bZb
+bZu
+bZu
+bSM
+bQB
+bGC
+cbN
+ccr
+ccR
+cdi
+bEK
aaa
aaa
aaa
@@ -97787,127 +98075,127 @@ aad
aad
aad
aad
-aaN
+aaO
aaT
-abj
-abF
-abS
-abS
-acw
-abT
+abk
+abH
+abU
+abU
+acy
+abV
aaD
aaV
adU
-aeA
-aja
-cre
-crk
-crr
-cry
-crF
-cmA
-cmA
-cmH
-csP
-csd
-csm
-csw
-csG
-csR
-cti
-asA
-aum
-avK
-avK
-avK
-avK
-aBQ
-aDN
-azb
-aHJ
-aJg
-avK
-aMI
-aMI
-aPZ
-aRJ
-aTj
-aPU
-axP
-aLc
-aZO
-bxw
-bbg
-bcE
-pIL
-bfr
-bgG
-bie
-tTJ
-nGb
-bmb
-iOJ
-llI
-ylJ
-bqg
-bri
-bsD
-btM
-buW
-qgS
-bxv
-rwV
-bcP
-apV
-aZx
-bcX
-biw
-bDx
-bHW
-apV
-bRL
-bRL
-bRL
-bRL
-bRL
-bRL
-bRL
-bzL
-bPI
-bjH
-bgP
-ykz
-ykC
-ykK
-bPI
-bir
-bjs
-bkd
-bld
-bmA
-bob
-bob
-brj
-bld
-bqd
-brv
-btL
-btL
-btL
-btL
-bKe
-bKb
-bpr
-bpr
-bpr
-btQ
-bSv
-bSv
-lpG
-dTQ
-gvm
-bJF
-bSx
+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
+aZF
+baM
+bbU
+bdy
+beY
+bgm
+bhG
+biW
+bke
+ble
+bmG
+boe
+bpx
+bqF
+brJ
+bsZ
+bud
+bvq
+bwe
+bxD
+byZ
+bAd
+bBc
+bBP
+bCO
+bDG
+bEG
+bFB
+bGx
+bBP
+bGr
+bGr
+bGr
+bGr
+bGr
+bGr
+bGr
+bNN
+bOt
+bPd
+bPe
+bQd
+bQz
+bRf
+bOt
+bRU
+bSw
+bSS
+bTz
+bUg
+bUI
+bUI
+bVC
+bTz
+bWr
+bWT
+bXn
+bXn
+bXn
+bXn
+bYA
+bYM
+bYN
+bYN
+bYN
+car
+bGC
+bGC
+cbO
+ccp
+ccS
+cdj
+bEK
aaa
aaa
aab
@@ -98044,127 +98332,127 @@ aaa
aaa
aaa
aad
-aaO
+aaP
aad
-aaI
+aaJ
aah
-abT
-abW
+abV
+abY
aad
aah
aad
aaV
adV
-aeB
-aja
-aja
-aja
-aja
-crz
-aja
-aja
-aja
-aja
-crV
-cse
-csn
-csx
-csH
-csS
-cti
-asB
-aun
-avM
-axz
-aza
-aAz
-aBR
-aDO
-aFJ
-aHK
-aJh
-aKU
-aMJ
-aOw
-aQa
-aOw
-aTm
-aPU
-axP
-aLc
-aZO
-bxw
-nud
-bcF
-pIL
-bfs
-bgH
-bif
-kJC
-rdq
-bmc
-bnI
-uQH
-uQH
-uQH
-chs
-uQH
-uQH
-apO
-avz
-ymg
-bcO
-bcY
-bwa
-aRR
-bzJ
-bDv
-bHR
-bIw
-apV
-aoN
-bKc
-aOH
-bei
-bSv
-aZV
-bQp
-bPL
-bPI
-bgP
-bJX
-ykA
-ykD
-bhT
-bPI
-biu
-bfw
-bke
-ble
-bmB
-boW
-boW
-bpq
-bqc
-bsP
-bsA
-brl
-bVa
-bVa
-bVa
-bKf
-bKb
-yll
-yll
-yll
-bUz
-bSx
-bSx
-bSv
-bRx
-cbj
-bJF
-bSx
+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
+beY
+bgn
+bhH
+biX
+bkf
+blf
+bmH
+bof
+bpy
+bpy
+bpy
+bta
+bpy
+bpy
+bwf
+bxE
+bza
+bAe
+bBd
+bBQ
+bCP
+bDH
+bEI
+bFC
+bGA
+bBP
+bIr
+bIt
+bKd
+bKX
+bGC
+bMp
+bMU
+bNO
+bOt
+bPe
+bPG
+bQe
+bQA
+bRg
+bOt
+bRV
+bOR
+bST
+bTA
+bUh
+bUJ
+bUJ
+bVD
+bWd
+bWs
+bWU
+bXo
+bWa
+bWa
+bWa
+bYB
+bYM
+bZc
+bZc
+bZc
+bSM
+bEK
+bEK
+bGC
+ccs
+bFF
+cdj
+bEK
aaa
aab
aab
@@ -98303,125 +98591,125 @@ aaa
aad
aad
aad
-aaI
-abG
-abU
+aaJ
+abI
+abW
aad
aaD
-acl
+acn
aaC
aaV
adW
-aeC
-aja
-crg
-crl
-crs
-crA
-crG
-crL
-cmB
-aja
-crW
-csf
-cso
-csy
-csI
-csT
-cth
-asC
-auo
-avN
-axA
-azb
-aAA
-azb
-aDP
-aFK
-aHL
-aJi
-aKV
-aMK
-aKV
-aQb
-azb
-aTn
-aPU
-aWa
-aLc
-aZO
-bxw
-bbh
-bcG
-yhq
-bft
-oBd
-big
-lpE
-pIL
-bmd
-pIL
-yje
-bqi
-brk
-bsE
-bsE
-buY
-bwb
-wAo
-byC
-bzK
-bHP
-apV
-bbx
-bcU
-bHX
-bJf
-bIC
-apV
-aoO
-bSv
-bSv
-caE
-bSv
-aZV
-bSx
-bPL
-bPI
-bDz
-bPI
-bPI
-bPI
-bPI
-bPI
-bPI
-bjD
-bJu
-bJu
-bJu
-bJu
-bJu
-bpc
-bJu
-bsP
-bsA
-btN
-bVa
-bVa
-ylc
-guz
-bpr
-yli
-ylk
-ylm
-bUz
-caE
-bQp
-bSv
-bSx
-cbj
-gul
+aeG
+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
+aLG
+aQS
+azK
+aUe
+aQL
+aWV
+aLP
+aZF
+baM
+bbW
+bdA
+beZ
+bgo
+bhI
+biY
+bkg
+beY
+bmI
+beY
+bpz
+bqG
+brK
+btb
+btb
+bvr
+bwg
+bxF
+bzb
+bAf
+bBe
+bBP
+bCQ
+bDI
+bEJ
+bFD
+bGB
+bBP
+bIs
+bGC
+bGC
+bKY
+bGC
+bMp
+bEK
+bNO
+bOt
+bPf
+bOt
+bOt
+bOt
+bOt
+bOt
+bOt
bSx
+bSU
+bSU
+bSU
+bSU
+bSU
+bVE
+bSU
+bWs
+bWU
+bXp
+bWa
+bWa
+bYk
+bYC
+bYN
+bZd
+bZw
+bZU
+bSM
+bKY
+bMU
+bGC
+bEK
+bFF
+bPH
+bEK
aaa
aab
aab
@@ -98560,7 +98848,7 @@ aaa
aaa
aaa
aad
-aaI
+aaJ
aah
aaD
aad
@@ -98569,116 +98857,116 @@ aah
aah
aaV
adX
-aez
-aja
-aja
-aja
-crt
-crB
-crH
-crM
-cmC
-cmI
-crX
-csg
-csJ
-csJ
-csJ
-csU
-ctg
-cnQ
-aun
-avM
-axB
-azc
-aAz
-aBS
-aBW
-aFL
-aHM
-aJj
-aKW
-aML
-aOx
-aQc
-azb
-aTn
-aPU
-aWb
-aLe
-bbB
-bad
-fFC
-xYf
-bad
-fFC
-xYf
-bad
-bad
-iuN
-bme
-hOC
-bry
-bpa
-btY
-bru
-bru
-bry
-bwc
-bxx
-btY
-bxy
-bxy
-apV
-apV
-apV
-apV
-bHS
-apV
-apV
-aoN
-bSv
-bSv
-bSv
-bSv
-bbz
-bSx
-bPL
-bSx
-bSv
-gul
-gul
-btZ
-bSv
-bSv
-bSx
-bSv
-bJu
-bly
-bnH
-bnH
-bnH
-bpe
-bJu
-bsP
-bUz
-bUz
-brG
-brG
-bUz
-bUz
-bUz
-bUz
-bUz
-bUz
-bUz
-bRz
-bSv
-cbH
-bSx
-ccD
-bZz
-bSx
+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
+bbX
+bdB
+baN
+bbX
+bdB
+baN
+baN
+blg
+bmJ
+bog
+bpA
+bpD
+brL
+btc
+btc
+bpA
+bwh
+bxG
+brL
+bvv
+bvv
+bBP
+bBP
+bBP
+bBP
+bFE
+bBP
+bBP
+bIr
+bGC
+bGC
+bGC
+bGC
+bMq
+bEK
+bNO
+bEK
+bGC
+bPH
+bPH
+bQB
+bGC
+bGC
+bEK
+bGC
+bSU
+bTB
+bUi
+bUi
+bUi
+bVF
+bSU
+bWs
+bSM
+bSM
+bXG
+bXG
+bSM
+bSM
+bSM
+bSM
+bSM
+bSM
+bSM
+bTG
+bGC
+cbP
+bEK
+ccT
+cdk
+bEK
aaa
aab
aab
@@ -98817,125 +99105,125 @@ aab
aab
aaa
aad
-aaI
+aaJ
aah
-abV
-abH
+abX
+abJ
aaA
aah
aah
aaV
adY
-clC
-aja
-crg
-crm
-cru
-crN
-cmD
-crN
-cmD
-aja
-crY
-csh
-csq
-csA
-csK
-csV
-cth
-asE
-aup
-avK
-avK
-avK
-avK
-aBT
-aDP
-aFM
-aHN
-aJk
-azb
-azb
-aOy
-aQd
-azb
-aTo
-aPU
-axP
-aLc
-aYR
-bad
-bvh
-bcH
-bdZ
-xuY
-bgJ
-bii
-eXU
-rrd
-bmf
-cOi
-bry
-bqk
-gYD
-bqm
-bqm
-bva
-shM
-gNO
-txO
-bIb
-ben
-bIa
-cHf
-cnE
-bSx
-cbj
-bSv
-bSx
-bKc
-aqb
-aOI
-bSv
-bSv
-aZV
-bSx
-bPL
-bSx
-bSv
-bSv
-bSv
-bSv
-bSv
-btZ
-bSx
-bSv
-bJu
-blZ
-bKg
-blZ
-bKg
-bpg
-bJu
-brr
-bqz
-bVa
-bVa
-bVa
-bVa
-bUz
-gul
-bth
-bti
-bSv
-caE
-bSv
-bSv
-bSv
-bSx
-ccD
-bZz
-bSx
+aeH
+afd
+afB
+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
+aPn
+aQU
+azK
+aUf
+aQL
+awK
+aLP
+aZE
+baN
+bbY
+bdC
+bfa
+bgp
+bhJ
+biZ
+bkh
+blh
+bmK
+boh
+bpA
+bqH
+brM
+bqJ
+bqJ
+bvs
+bwi
+bxH
+bzc
+bAg
+bBf
+bBR
+bCR
+bDJ
+bEK
+bFF
+bGC
+bEK
+bIt
+bJl
+bKe
+bGC
+bGC
+bMp
+bEK
+bNO
+bEK
+bGC
+bGC
+bGC
+bGC
+bGC
+bQB
+bEK
+bGC
+bSU
+bTC
+bUj
+bTC
+bUj
+bVG
+bSU
+bWt
+bWV
+bWa
+bWa
+bWa
+bWa
+bSM
+bPH
+bZe
+bOv
+bGC
+bKY
+bGC
+bGC
+bGC
+bEK
+ccT
+cdk
+bEK
aaa
aab
aab
@@ -99074,16 +99362,16 @@ aab
aab
aaa
aad
-abk
-abH
+abl
+abJ
aah
aad
-acl
+acn
aah
aah
aaV
adZ
-aeE
+aeI
afe
afe
afe
@@ -99095,104 +99383,104 @@ afe
afe
afe
afe
-cti
-cti
-csL
-csW
-cti
-asF
-aun
-avM
-axz
-aza
-aAz
-aBU
-aBW
-aFN
-aFK
-aJl
-azb
-aFK
-aOz
-aQe
-azb
-aik
-aPU
-ygx
-aLc
-aZO
-bad
-bab
-hdn
-bea
-bzS
-bgK
-bzS
-bjz
-bkG
-bmf
-bnL
-bry
-bql
-brm
-bsG
-btX
-bvb
-bwe
-lCC
-byE
-bxy
-bAM
-bAQ
-tOj
-cnE
-bSx
-nRS
-bSv
-bSx
-bSx
-bSx
-bdY
-bdX
-bee
-bdX
-bdX
-beh
-bYh
-bYh
-bYh
-bYh
-bYh
-bPQ
-gul
-bSx
-bSv
-bJu
-bmg
-bJu
-bnJ
-bJu
-bpj
-bJu
-bJT
-bUz
-btO
-btO
-btO
-btO
-bUz
-bSv
-bSv
-bSv
-bSv
-bSv
-bSx
-bSx
-bSx
-bQp
-cbj
-ccX
-bSx
+ana
+ana
+apt
+aqD
+ana
+atl
+auS
+awu
+ayh
+azJ
+aBk
+aCI
+aCK
+aGA
+aGx
+aJW
+azK
+aGx
+aPo
+aQV
+azK
+aUg
+aQL
+awL
+aLP
+aZF
+baN
+bbZ
+bdD
+bfb
+bdF
+bhK
+bdF
+bki
+bli
+bmK
+boi
+bpA
+bqI
+brN
+btd
+bue
+bvt
+bwj
+bxI
+bzd
+bvv
+bBg
+bBS
+bCS
+bDJ
+bEK
+bFG
+bGC
+bEK
+bEK
+bEK
+bKf
+bGD
+bLI
+bGD
+bGD
+bNP
+bOu
+bOu
+bOu
+bOu
+bOu
+bRh
+bPH
+bEK
+bGC
+bSU
+bTD
+bSU
+bUK
+bSU
+bVH
+bSU
+bWu
+bSM
+bXq
+bXq
+bXq
+bXq
+bSM
+bGC
+bGC
+bGC
+bGC
+bGC
+bEK
+bEK
+bEK
+bMU
+bFF
+cdl
+bEK
aab
aab
aab
@@ -99331,125 +99619,125 @@ aab
aaa
aaa
aad
-abl
+abm
aad
aah
-acl
-acx
+acn
+acz
aah
-abU
+abW
aaV
aea
-aeF
+aeJ
afe
afC
afC
-cgH
+agu
afC
-ahx
-ail
-ajc
-ajQ
-akN
+ahL
+aiD
+ajt
+aka
+akW
afe
-amF
-abC
-abR
-apY
-cnO
-asC
-auo
-avO
-axA
-azb
-aAB
-aBV
-aDQ
-aFO
-aHO
-aJm
-aHO
-aMM
-aHO
-aQf
-aHO
-aTq
-aPU
-aWc
-aXy
-bcx
-bad
-bbj
-bcI
-beb
-gbo
-bgL
-bik
-bjA
-bkH
-bmh
-bnM
-boY
-bqm
-brn
-uVG
-btX
-bvc
-bwf
-vEZ
-chW
-bxy
-bxy
-bxy
-bxy
-bxy
-bSx
-bnb
-bdX
-bIF
-bIG
-bdX
-bed
-bdX
-bef
-bSx
-beg
-bei
-bti
-bti
-bSx
-bSx
-bSx
-bRy
-gul
-bSx
-bjE
-bJu
-bpb
-bJu
-bqh
-bJu
-bqy
-bJu
-bqj
-bUz
-bUz
-bUz
-bUz
-bUz
-bUz
-bSv
-bSv
-bSv
-bSv
-bSv
-bSv
-bSv
-bSv
-bSx
-cbj
-bSv
-bSx
+anb
+abE
+abT
+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
+bze
+bvv
+bvv
+bvv
+bvv
+bvv
+bEK
+bFH
+bGD
+bHx
+bIu
+bGD
+bKg
+bGD
+bLJ
+bEK
+bMV
+bKX
+bOv
+bOv
+bEK
+bEK
+bEK
+bRi
+bPH
+bEK
+bSy
+bSU
+bTE
+bSU
+bUL
+bSU
+bVI
+bSU
+bWv
+bSM
+bSM
+bSM
+bSM
+bSM
+bSM
+bGC
+bGC
+bGC
+bGC
+bGC
+bGC
+bGC
+bGC
+bEK
+bFF
+bGC
+bEK
aab
aab
aaa
@@ -99588,125 +99876,125 @@ aad
aad
aad
aad
-aaI
+aaJ
aad
-abW
+abY
aah
aah
aah
aaA
aaV
-abC
-aeF
+abE
+aeJ
aff
afD
-afX
+afW
agv
-agS
-ahy
-aim
-ajd
-ajQ
-akO
+aha
+ahM
+aiE
+aju
+aka
+akX
afe
-amG
-anC
-abC
-apZ
-arm
-asG
-aun
-avM
-axC
-azd
-aAz
-aBW
-azb
-aDP
-aHP
-aJn
-azb
-aDP
-aOA
-aQg
-azb
-aTr
-aPU
-axP
-aLc
-aZO
-bad
-bbk
-bzS
-bec
-rEu
-bgM
-rEu
-dXk
-bkI
-bmd
-lnp
-boZ
-bqn
-bro
-bsH
-btR
-bxy
-bIe
-bIf
-bIv
-bxy
-bxy
-bxy
-riO
-bxy
-bve
-bve
-hki
-aZW
-aZW
-aZW
-aZW
-aZW
-qGO
-biL
-biL
-biL
-bSx
-bSx
-bSx
+anc
+aof
+abE
+aqF
+arT
+atm
+auS
+awu
+ayk
+azM
+aBk
+aCK
+azK
+aEC
+aIE
+aJY
+azK
+aEC
+aPp
+aQX
+azK
+aUi
+aQL
+awK
+aLP
+aZF
+baN
+bcb
+bdF
+bfd
+bgr
+bhM
+bgr
+bkk
+blk
+bmI
+bok
+bpC
+bqK
+brP
+btf
+buf
+bvv
+bwl
+bxK
+bzf
+bvv
+bvv
+bvv
+bCT
+bvv
+bvy
+bvy
+bGE
+bHy
+bHy
+bHy
+bHy
+bHy
+bLK
+blN
+blN
+blN
+bEK
+bEK
+bEK
aaa
-bSx
-bRy
-bSx
-bSx
-bSv
-bJu
-bJu
-bJu
-bJu
-bJu
-bJu
-bJu
-bqp
-bqA
-bqA
-bqA
-bqA
-bqA
-bHI
-bdX
-bdX
-bdX
-bdX
-bdX
-bdX
-bdX
-bdX
-bdX
-bHJ
-beg
-bSx
+bEK
+bRi
+bEK
+bEK
+bGC
+bSU
+bSU
+bSU
+bSU
+bSU
+bSU
+bSU
+bWw
+bRC
+bRC
+bRC
+bRC
+bRC
+bYD
+bGD
+bGD
+bGD
+bGD
+bGD
+bGD
+bGD
+bGD
+bGD
+ccU
+bMV
+bEK
aab
aab
aab
@@ -99838,132 +100126,132 @@ aab
aab
aab
aab
-aao
-aar
-aaw
+aal
+aap
+aas
aad
-aaP
+aaF
aah
aah
-aaI
+aaJ
aah
aah
aah
aah
aah
-add
+adb
aaV
aeb
-aeF
+aeJ
afe
afE
afD
afD
-agT
-ahz
+ahb
+ahN
agv
-aje
-cgI
-ajR
-alI
-amH
-anD
-aoQ
-csX
-cnP
-asH
-auq
-avK
-avK
-avK
-avK
-aBX
-aDR
-aBX
-avK
-aBX
-aKX
-aBX
-avK
-aBX
-aRK
-aBX
-aPU
-wAc
-aLc
-aZO
-bad
-bbl
-bcK
-byM
-bfu
-bgN
-bim
-bjC
-bkJ
-bmf
-bnN
-bpa
-nYY
-brp
-bsI
-btP
-bxy
-chR
-bxz
-byF
-bzP
-bAO
-bBI
-uiA
-bDB
-bEE
-bFD
-tHH
-bHT
-bIL
-oWF
-bIL
-aZW
-fDN
-biL
-bMM
-bNr
+ajv
+akb
+akY
+alW
+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
+bll
+bmK
+bol
+bpD
+bqL
+brQ
+btg
+bug
+bvv
+bwm
+bxL
+bzg
+bAh
+bBh
+bBT
+bCU
+bDK
+bEL
+bFI
+bGF
+bHz
+bIv
+bJm
+bIv
+bHy
+bLL
+blN
+bMW
+bNQ
aaR
aaa
aaa
aaa
-bSx
-bRy
-sJx
-bSv
-bSv
-bSv
-bSv
-bSv
-bSv
-bSv
-bII
-sJx
-bRy
-bWR
-gul
-bHH
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
+bEK
+bRi
+bRA
+bGC
+bGC
+bGC
+bGC
+bGC
+bGC
+bGC
+bVJ
+bRA
+bRi
+bWW
+bPH
+bXH
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
aab
aab
aab
@@ -100095,118 +100383,118 @@ aab
aab
aab
aab
-aap
-aas
-aax
-aaF
-gTr
+aam
+aaq
+aat
+aay
+aaG
aaQ
-ovA
-xNM
+aaW
+abn
aad
aah
aah
aah
-acl
+acn
aaD
aaV
aaV
-clD
+aeK
afe
afe
-afY
+afX
afD
-afY
+afX
afe
-ain
+aiF
afe
afe
afe
afe
-cgK
-anE
-aoR
-cnI
+ane
+aoh
+apv
+aqH
aaV
-asI
-auk
-avP
-axD
-aze
-avK
-aBY
-azb
-aFP
-avK
-aJo
-azb
-aMN
-avK
-aBY
-azb
-aTs
-aPU
-axP
-aLc
-aZO
-bad
-bad
-bad
-bad
-bad
-bad
-bad
-bad
-bkK
-bmf
-bnO
-bry
-rvl
-gVs
-xjb
-btY
-bxy
-bwh
-jRc
-bxA
-bxA
-bxA
-bBJ
-bCH
-bDC
-bDC
-bFE
-bGI
-bHU
-bIM
-ngo
-yke
-aZW
-bKF
-bMk
-bok
-bNs
+ato
+auP
+awx
+ayl
+azN
+aws
+aCM
+azK
+aGC
+aws
+aJZ
+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
+brL
+bvv
+bwn
+bxM
+bxP
+bxP
+bxP
+bBU
+bCV
+bDL
+bDL
+bFJ
+bGG
+bHA
+bIw
+bJn
+bKh
+bHy
+bKZ
+bMr
+bBo
+bNR
aaR
aaa
aaa
aaa
-bSx
-bRy
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bRy
-bSx
-bSx
-bSx
-bSx
+bEK
+bRi
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bRi
+bEK
+bEK
+bEK
+bEK
aab
aab
aab
@@ -100352,115 +100640,115 @@ aab
aab
aab
aab
-aao
-aar
-aay
+aal
+aap
+aau
aad
aad
aad
aad
-aaI
-abI
-abI
-abI
-abI
+aaJ
+abK
+abK
+abK
+abK
aad
aad
aad
aec
-aeH
+aeL
aah
afe
afC
afD
afC
afe
-aio
-ajf
-ajS
-akP
-alJ
-amJ
-anF
-aoR
-aqc
-aro
+aiG
+ajw
+akc
+akZ
+alX
+anf
+aoi
+apv
+aqI
+arV
adP
-auk
-avP
-axE
-azf
-avK
-aBZ
-aDS
-aFQ
-avK
-aBZ
-aDS
-aMO
-avK
-aBZ
-aDS
-aTt
-aPU
-aJs
-aLc
-aZO
-auy
-auy
-yhc
-yhr
-yhJ
-yib
-yiq
-yiD
-bkL
-bml
-bnP
-pIL
-pIL
-brq
-bsK
-eDF
-bvg
-bwi
-cYM
-byH
-mTc
-mTc
-oab
-bCJ
-bDD
-bEG
-bFF
-bGJ
-bHT
-bIN
-kgI
-sIm
-aZW
-bKF
-biL
-bMN
-bNt
+auP
+awx
+aym
+azO
+aws
+aCN
+aEF
+aGD
+aws
+aCN
+aEF
+aND
+aws
+aCN
+aEF
+aUk
+aQL
+aKd
+aLP
+aZF
+avd
+avd
+bdH
+bff
+bgt
+bhO
+bjc
+bkm
+bln
+bmM
+bon
+beY
+beY
+brS
+bti
+buh
+bvw
+bwo
+bxN
+bzh
+bAi
+bAi
+bBV
+bCW
+bDM
+bEM
+bFK
+bGH
+bHz
+bIx
+bJo
+bKi
+bHy
+bKZ
+blN
+bMX
+bNS
aaR
aaa
aaa
aaa
-bSx
-bRy
-bSx
-bSw
-bTj
-bHM
-bSv
-bTj
-bTj
-bSv
-bSv
-bSx
-bRy
-bSx
+bEK
+bRi
+bEK
+bRW
+bRY
+bSV
+bGC
+bRY
+bRY
+bGC
+bGC
+bEK
+bRi
+bEK
aaa
aaa
aab
@@ -100616,108 +100904,108 @@ aab
aab
aab
aad
-abk
-abI
-abX
-acm
-acy
-acS
-ade
-ade
-acl
-aeI
+abl
+abK
+abZ
+aco
+acA
+acR
+adc
+adc
+acn
+aeM
afg
afe
-cgG
+afY
afD
afC
afe
-aip
-ajg
-ajT
-akQ
-alK
-amK
-abC
-aoS
-aqd
-arp
+aiH
+ajx
+akd
+ala
+alY
+ang
+abE
+apw
+aqJ
+arW
adP
-auk
-avQ
-axF
-azg
-avK
-aCa
-aDT
-aCa
-avK
-aCa
-aKY
-aCa
-avK
-aCa
-aRL
-aCa
-aPU
-aWd
-aLc
-aZO
-hlg
-bbo
-ygZ
-yhs
-yhK
-yic
-yir
-yiC
-bkM
-bmm
-iMx
-bpd
-bqq
-bqq
-irc
-vcx
-llb
-bwj
-bwm
-byI
-bzR
-bzR
-bBK
-bCK
-bDE
-bxA
-bxA
-bxA
-aZW
-aZW
-aZW
-gOP
-aZW
-bKF
-biL
-biL
-biL
-biL
-biL
+auP
+awy
+ayn
+azP
+aws
+aCO
+aEG
+aCO
+aws
+aCO
+aLJ
+aCO
+aws
+aCO
+aSB
+aCO
+aQL
+aWY
+aLP
+aZF
+baO
+bcd
+bdI
+bfg
+bgu
+bhP
+bjd
+bkn
+blo
+bmN
+boo
+bpE
+bqN
+bqN
+btj
+bui
+bvx
+bwp
+bxO
+bzi
+bAj
+bAj
+bBW
+bCX
+bDN
+bxP
+bxP
+bxP
+bHy
+bHy
+bHy
+bKj
+bHy
+bKZ
+blN
+blN
+blN
+blN
+blN
aaR
aaa
-bSx
-bRy
-bSx
-gst
-bTj
-bIx
-bSv
-bVg
-bVg
-bSv
-bSv
-bSx
-bIV
-bSx
+bEK
+bRi
+bEK
+bRX
+bRY
+bSW
+bGC
+bUk
+bUk
+bGC
+bGC
+bEK
+bWx
+bEK
aab
aab
aab
@@ -100873,108 +101161,108 @@ aab
aab
aab
aad
-aaI
-abI
-abY
-acn
-abI
-acT
-adf
-adA
+aaJ
+abK
+aca
+acp
+abK
+acS
+add
+adw
aed
-aeJ
+aeN
afh
afe
afC
agw
afC
afe
-aiq
-ajh
-cgJ
-akR
-alL
-amL
-anG
-cgL
-aqe
-arq
-asJ
-aur
-avR
-avR
-avR
-aAC
-aCb
-aDU
-aFR
-aHQ
-aCb
-aIw
-aQh
-aOB
-aQh
-aRM
-aTu
-aUE
-aWe
-aLc
-bcA
-bae
-bbp
-yha
-yht
-yhL
-yid
-yis
-yiD
-bkN
-bwd
-bft
-vGv
-yjq
-pIL
-bmd
-kSb
-bve
-bwk
-bxA
-bxA
-bxA
-bdV
-fxb
-bdV
-bDF
-bdV
-bxA
-bxA
-bxA
-ral
-aZW
-qNc
-aZW
-bKF
-biL
-bMO
-bNu
-bNW
-chP
+aiI
+ajy
+ake
+alb
+alZ
+anh
+aoj
+apx
+aqK
+arX
+atp
+auW
+awz
+awz
+awz
+aBn
+aCP
+aEH
+aGE
+aIF
+aCP
+aLK
+aNE
+aPq
+aNE
+aSC
+aUl
+aVv
+aWZ
+aLP
+aZJ
+baP
+bce
+bdJ
+bfh
+bgv
+bhQ
+bje
+bkm
+blp
+bmO
+bgo
+bpF
+bqO
+beY
+bmI
+buj
+bvy
+bwq
+bxP
+bxP
+bxP
+bvz
+bBX
+bvz
+bDO
+bvz
+bxP
+bxP
+bxP
+bIy
+bHy
+bKk
+bHy
+bKZ
+blN
+bMY
+bNT
+bOw
+bPg
aaR
aaa
-bSx
-bRy
-bSx
-bTj
-bTj
-bIx
-bSw
-bVg
-bVg
-bSv
-bSv
-gtO
-bRy
-bSx
+bEK
+bRi
+bEK
+bRY
+bRY
+bSW
+bRW
+bUk
+bUk
+bGC
+bGC
+bWe
+bRi
+bEK
aab
aab
aab
@@ -101130,108 +101418,108 @@ aab
aab
aab
aad
-aaI
-abI
-abZ
-aco
-abI
-acU
-adg
-adB
+aaJ
+abK
+acb
+acq
+abK
+acT
+ade
+adx
aee
-aeK
+aeO
afi
afe
afe
afe
afe
afe
-air
-air
-air
-air
-air
+aiJ
+aiJ
+aiJ
+aiJ
+aiJ
aaV
aaV
aaV
aaV
aaV
-asK
-aus
-avS
-abD
-abD
-aAD
-abD
-aDV
-aFS
-aHR
-abC
-aKd
-abC
-aOC
-aQi
-abD
-aTv
-aUE
-aWe
-aLc
-aZO
-baf
-bbq
-yhb
-yhM
-yhM
-yie
-yit
-bgT
-yiL
-yiS
-yiY
-yjf
-bgT
-brs
-bmf
-btT
-bve
-bwl
-bxB
-bxB
-bzT
-bdV
-bBL
-bCM
-gXa
-bdV
-bFI
-bxB
-bxB
-cRj
-aZW
-qLW
-aZW
-fDN
-biL
-bJL
-bNv
-bNX
-bNX
+atq
+auX
+awA
+abF
+abF
+aBo
+abF
+aEI
+aGF
+aIG
+abE
+aLL
+abE
+aPr
+aQY
+abF
+aUm
+aVv
+aWZ
+aLP
+aZF
+baQ
+bcf
+bdK
+bfi
+bfi
+bhR
+bjf
+bhS
+blq
+bmP
+bop
+bpG
+bhS
+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
aaR
aaa
-bSx
-grV
-bSx
-bTj
-bTj
-bHM
-bSv
-bVg
-bVg
-bSw
-bSv
-bSx
-bRy
-bSx
+bEK
+bRj
+bEK
+bRY
+bRY
+bSV
+bGC
+bUk
+bUk
+bRW
+bGC
+bEK
+bRi
+bEK
aab
aaa
aaa
@@ -101387,108 +101675,108 @@ aab
aab
aab
aad
-aaI
-abI
-abI
-acp
-abI
+aaJ
+abK
+abK
+acr
+abK
aah
-adh
+adf
aah
aef
-aeL
+aeP
afj
aad
aah
agx
-agU
-aej
+ahc
+ahO
aah
aah
aah
aah
aah
aah
-abn
-abK
-alA
+abp
+abM
+amS
aaV
-asL
-asL
-asL
-asL
-asL
-asL
-asL
-asL
-aFT
-asL
-aJp
-aKm
-aJp
-ahr
-ahr
-ahr
-ahr
-ahr
-aVI
-aXq
-bdR
-auy
-auy
-yhc
-yhv
-yhN
-bgT
-bgT
-bgT
-bkP
-bmp
-bnS
-bpf
-yjr
-bwd
-bsN
-btU
-bdV
-bfk
-mhg
-mhg
-bgx
-bdV
-rUV
-bCL
-gRJ
-bdV
-brd
-bGN
-bGN
-bsv
-bdV
-aZW
-aZW
-bKF
-bMl
-bMP
-bNw
-bNY
-bOO
+atr
+atr
+atr
+atr
+atr
+atr
+atr
+atr
+aGG
+atr
+aKa
+aLM
+aKa
+ahC
+ahC
+ahC
+ahC
+ahC
+aXa
+aYq
+aZK
+avd
+avd
+bdH
+bfj
+bgw
+bhS
+bhS
+bhS
+blr
+bmQ
+boq
+bpH
+bqP
+bmO
+btk
+bul
+bvz
+bws
+bxR
+bxR
+bAl
+bvz
+bBZ
+bCZ
+bxU
+bvz
+bFM
+bGI
+bGI
+bIA
+bvz
+bHy
+bHy
+bKZ
+bMs
+bMZ
+bNV
+bOy
+bPh
aaR
aab
-bSx
-bRy
-bSx
-bSw
-bTj
-bIx
-bSw
-bTj
-bTj
-bSv
-bSw
-bSx
-bRy
-bSx
+bEK
+bRi
+bEK
+bRW
+bRY
+bSW
+bRW
+bRY
+bRY
+bGC
+bRW
+bEK
+bRi
+bEK
aab
aab
aaa
@@ -101644,10 +101932,10 @@ aaa
aab
aab
aad
-abm
-abJ
-abJ
-acq
+abo
+abL
+abL
+acs
aad
aad
aad
@@ -101659,7 +101947,7 @@ aad
afZ
agy
agy
-ahA
+ahP
agy
agy
agy
@@ -101669,83 +101957,83 @@ agy
agy
agy
agy
-arr
-asL
-aut
-cgN
-axG
-azh
-cgN
-aCc
-aDW
-aFU
-asL
-aJq
-aLa
-aMQ
-aOD
-axP
-aRN
-aNf
-aNf
-aXw
-aXz
-bdT
-ylo
-ygN
-yhd
-yhy
-yhO
-yih
-yiu
-yiE
-bis
-bmq
-bnT
-yjg
-yjt
-brt
-bsO
-btV
-bdV
-bwn
-bxC
-wKI
-wKI
-bAT
-bBM
-vIw
-wKI
-bEJ
-wKI
-wKI
-bHZ
-bGO
-bdV
-blg
-bok
-fDN
-biL
-bJL
-bNx
-bNZ
-bNZ
+arY
+atr
+auY
+awB
+ayo
+azQ
+awB
+aCQ
+aEJ
+aGH
+atr
+aKb
+aLN
+aNF
+aPs
+awK
+aSD
+aNS
+aNS
+aXb
+aYs
+aZL
+baR
+bcg
+bdL
+bfk
+bgx
+bhT
+bjg
+bko
+bjh
+bmR
+bor
+bpI
+bqQ
+brU
+btl
+bum
+bvz
+bwt
+bxS
+bzj
+bzj
+bBi
+bCa
+bDa
+bzj
+bEN
+bzj
+bzj
+bHB
+bIB
+bvz
+bBr
+bBo
+bLL
+blN
+bJq
+bNW
+bOz
+bOz
aaR
aab
-bSx
-bhZ
-bSx
-bSx
-gsH
-bSx
-bSx
-bSx
-bSx
-bSx
-gsH
-bSx
-bRy
-bSx
+bEK
+bRk
+bEK
+bEK
+bSz
+bEK
+bEK
+bEK
+bEK
+bEK
+bSz
+bEK
+bRi
+bEK
aab
aab
aaa
@@ -101901,108 +102189,108 @@ aaa
aab
aab
aad
-abn
-abK
-abG
-acr
-acz
+abp
+abM
+abI
+act
+afH
aaT
-adi
-adC
+adg
+acB
aeh
-aeM
-afk
+aeQ
afk
+aeQ
aga
-aad
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aad
-ars
-asL
-aut
-avU
-axH
-azi
-avU
-aCd
-aDX
-aFU
-asL
-aJr
-aLb
-aMT
-aOE
-aOE
-aOE
-aOE
-aOE
-aOE
-aXA
-aYU
-ygy
-ygM
-yhe
-yhP
-yhP
-yig
-bis
-wcb
-cgY
-bmr
-bnU
-bph
-yjt
-bwd
-bmf
-fOa
-bdV
-diD
-tzW
-bgz
-jQT
-bdV
-bdV
-bAV
-bdV
-bdV
-jQT
-bgz
-tzW
-bIR
-bdV
-blh
-bok
-fDN
-biL
-bMQ
-bNu
-bOa
-chQ
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+arZ
+atr
+auY
+awC
+ayp
+azR
+awC
+aCR
+aEK
+aGH
+atr
+aKc
+aLO
+aNG
+aPt
+aPt
+aPt
+aPt
+aPt
+aPt
+aYt
+aZM
+baS
+bch
+bdM
+bfl
+bfl
+bhU
+bjh
+bkp
+bls
+bmS
+bos
+bpJ
+bqQ
+bmO
+bmK
+bun
+bvz
+bwu
+bxT
+bzk
+bAm
+bvz
+bvz
+bBj
+bvz
+bvz
+bAm
+bzk
+bxT
+bIC
+bvz
+bKm
+bBo
+bLL
+blN
+bNa
+bNT
+bOA
+bPi
aaR
aab
-bSx
-bRy
-bSx
-gsw
-bSv
-bTI
-bUj
-bUk
-bUk
-bVD
-bSw
-bSx
-grV
-bSx
+bEK
+bRi
+bEK
+bRZ
+bGC
+bSX
+bTF
+bTH
+bTH
+bVg
+bRW
+bEK
+bRj
+bEK
aab
aab
aaa
@@ -102162,104 +102450,104 @@ aad
aad
aad
aad
-acA
+agC
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+ahd
+ahQ
+aiK
+ajz
+akf
+alc
acV
-acA
-aad
-aei
-aeN
-afl
-afF
-agb
-aad
-adI
-adI
-ahB
-aji
-ajV
-ajV
-adI
-ahB
-ahB
-ali
-aad
-ars
-asL
-auu
-avV
-axI
-azj
-avV
-aCe
-aDY
-aFV
-asL
-axP
-aLc
-aMU
-azo
-axP
-axP
-axP
-aUF
-axP
-aXB
-aYV
-ylo
-ygN
-yhf
-yhy
-yhQ
-yih
-bit
-bjJ
-bkS
-bms
-bnV
-bpi
-yju
-bwd
-bmf
-btW
-bdV
-bwo
-tzW
-bhY
-bzW
-bdV
-bkD
-bBO
-rAl
-bdV
-bzW
-bhY
-tzW
-bIS
-bdV
-bli
-bok
-bKF
-biL
-bMl
-biL
-biL
-biL
+acV
+adk
+adk
+acU
+arZ
+atr
+auZ
+awD
+ayq
+azS
+awD
+aCS
+aEL
+aGI
+atr
+awK
+aLP
+aNH
+azX
+awK
+awK
+awK
+aVw
+awK
+aYu
+aZN
+baR
+bcg
+bdN
+bfk
+bgy
+bhT
+bji
+bkq
+blt
+bmT
+bot
+bpK
+bqR
+bmO
+bmK
+buo
+bvz
+bwv
+bxT
+bzl
+bAn
+bvz
+bCb
+bCc
+bDQ
+bvz
+bAn
+bzl
+bxT
+bID
+bvz
+bFP
+bBo
+bKZ
+blN
+bMs
+blN
+blN
+blN
aaR
aab
-bSx
-bRy
-bSx
-gsx
-bSw
-bSw
-bRz
-bSv
-bSw
-bSw
-bSw
-bSx
-bRy
-bSx
+bEK
+bRi
+bEK
+bSa
+bRW
+bRW
+bTG
+bGC
+bRW
+bRW
+bRW
+bEK
+bRi
+bEK
aab
aab
aaa
@@ -102416,107 +102704,107 @@ aaa
aab
aab
aab
-aaa
-aaa
+aab
+aab
aad
-acB
-aah
-adj
-aad
-abG
-aad
-aad
-aad
-abG
-aad
-agV
-ahB
-ais
-ajj
-aji
-akS
-adI
-adI
-aen
-aen
-aad
-ars
-asL
-auv
-avW
-axJ
-azk
-aAE
-aCf
-aDZ
-aFW
-asL
-axP
-aLc
-axP
-cuE
-ctD
-ctV
-ctV
-cue
-cuE
-cuE
-aYW
-yiJ
-ygO
-yhz
-yhz
-yhR
-bgT
-bgT
-bgT
-bgT
-bgT
-bnW
-bgT
-bgT
-brw
-bme
-fBO
-bdV
-bwp
-gRJ
+ahg
+acU
+adh
+ady
+aei
+aei
+aei
+aei
+aei
+acU
+ahe
+acV
+aiL
+adk
+akg
+afl
+adH
+akf
+acV
+apy
+acU
+arZ
+atr
+ava
+awE
+ayr
+azT
+aBp
+aCT
+aEM
+aGJ
+atr
+awK
+aLP
+awK
+aPu
+aQZ
+aSE
+aSE
+aVx
+aPu
+aPu
+aZO
+baT
+bci
+bdO
+bdO
bgz
-bgz
-bAV
-bBO
-bBO
-bBO
-bAV
-bgz
-bgz
-gRJ
-bIT
-bdV
-blj
-bok
-fDN
-biL
-bMR
-blg
-biL
+bhS
+bhS
+bhS
+bhS
+bhS
+bou
+bhS
+bhS
+brV
+bmJ
+bup
+bvz
+bww
+bxU
+bzk
+bzk
+bBj
+bCc
+bCc
+bCc
+bBj
+bzk
+bzk
+bxU
+bIE
+bvz
+bDZ
+bBo
+bLL
+blN
+bNb
+bBr
+blN
aab
aab
aab
-bSx
-bRy
-bEj
-bSv
-bSv
-bEL
-bUk
-bFA
-bGt
-bGA
-bUk
-bSx
-bRy
-bSx
+bEK
+bRi
+bRB
+bGC
+bGC
+bSY
+bTH
+bUl
+bUM
+bVh
+bTH
+bEK
+bRi
+bEK
aab
aab
aaa
@@ -102674,106 +102962,106 @@ aab
aab
aab
aaa
-aaa
+aab
aad
-acC
-acW
+aah
+acU
+adi
+acV
+acV
+adi
+afl
+acV
+acV
+agz
+acV
+acV
adk
-aad
-aej
-aad
+ajA
+adk
+adk
+ama
+ani
+acV
+akg
+acU
+arZ
+atr
+avb
+awF
+ays
+awE
+awE
+aCU
+aEN
+aGK
+atr
+aKd
+aLP
+aNI
+aPu
+aRa
+aSF
+aUn
+aVy
+aXc
+aPu
+aZP
+baT
+bcj
+bdP
+bfm
+bgA
+baT
aaa
-aad
-aej
-aad
-agW
-adI
-ait
-aen
-ajW
-aiv
-alM
-aji
-adI
-aoU
-aad
-ars
-asL
-auw
-avX
-axK
-avW
-avW
-aCg
-aEa
-aFX
-asL
-aJs
-aLc
-aMV
-cuE
-cuu
-ctN
-ctW
-cuf
-cuo
-cuE
-aYX
-yiJ
-ygP
-yhh
-yhA
-yhS
-yiJ
-aaa
-boj
-bkU
-bmu
-bnX
-yjh
-bjK
-brx
-bsS
-nKK
-bdV
-bwq
-bxE
-byP
-bzY
-bdV
-bkF
-bCQ
-bnK
-bdV
-bzY
-bGQ
-chM
-bIU
-bdV
-blj
-bok
-bKF
-biL
-bMS
-bOb
-biL
+bkr
+blu
+bmU
+bov
+bpL
+bqS
+brW
+btm
+buq
+bvz
+bwx
+bxV
+bzm
+bAo
+bvz
+bCd
+bDb
+bDR
+bvz
+bAo
+bGJ
+bHC
+bIF
+bvz
+bDZ
+bBo
+bKZ
+blN
+bNc
+bNX
+blN
aab
aab
aab
-bSx
-bRy
-bSx
-bEp
-bEs
-bEM
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bRy
-bSx
+bEK
+bRi
+bEK
+bSb
+bSA
+bSZ
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bRi
+bEK
aab
aab
aaa
@@ -102931,106 +103219,106 @@ aab
aab
aaa
aaa
-aaa
-aad
-aad
-aad
-aad
+aab
aad
aah
-aad
-aad
-aad
-aah
-agz
-adI
-adI
-aen
-ajk
-aen
-aen
-alN
-amM
-adI
-ajW
-aad
-art
-asL
-aux
-avY
-axL
-azl
-aAF
-aCh
-aEb
-aFY
-asL
-axP
-aLd
-aMW
-cuE
-cut
-cut
-ctX
-cug
-cup
-cuE
-aYY
-yiJ
-ygQ
-yhi
-yhB
-yhT
-yiJ
+acU
+acV
+acV
+acV
+acV
+acV
+adi
+acV
+acU
+ahf
+acV
+ahQ
+ahQ
+akh
+ald
+adH
+anj
+acV
+apz
+acU
+asa
+atr
+avc
+awG
+ayt
+azU
+aBq
+aCV
+aEO
+aGL
+atr
+aKe
+aLQ
+aNJ
+aPu
+aRb
+aRb
+aUo
+aVz
+aXd
+aPu
+aZQ
+baT
+bck
+bdQ
+bfn
+bgB
+baT
aaa
-boj
-bkV
-bmv
-bnY
-bpl
-irn
-tij
-bsT
-ttI
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bdV
-bok
-bok
-fDN
-bok
-bok
-bok
-biL
+bkr
+blv
+bmV
+bow
+bpM
+bqT
+brX
+btn
+bur
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bvz
+bBo
+bBo
+bLL
+bBo
+bBo
+bBo
+blN
aab
aab
aab
-bSx
-bRy
-bSx
-bSx
-bSx
-bSx
-bSx
-bFC
-bYh
-bYh
-bYh
-bYh
-bFL
-bSx
+bEK
+bRi
+bEK
+bEK
+bEK
+bEK
+bEK
+bUm
+bOu
+bOu
+bOu
+bOu
+bUn
+bEK
aab
aaa
aaa
@@ -103188,106 +103476,106 @@ aab
aab
aaa
aaa
+aab
+aad
+aah
+acU
+adj
+adz
+adz
+adz
+adz
+adz
+adz
+acU
+acU
+acU
+aiM
+ajB
+aiM
+ale
+amb
+ank
+aok
+acU
+acU
+asb
+atr
+atr
+awH
+ayu
+ayu
+aBr
+aCW
+atr
+aGM
+atr
+aKf
+aLR
+awK
+aPv
+aRb
+aSG
+aUp
+aVA
+aXe
+aPu
+aZQ
+baT
+bcl
+bdR
+bfo
+bgC
+baT
aaa
-aad
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aah
-aad
-adp
-adI
-ahB
-ahB
-ajX
-akT
-alM
-ajV
-adI
-aoV
-aad
-aru
-asL
-asL
-avZ
-axM
-axM
-aAG
-aCi
-asL
-aFZ
-asL
-aJt
-aLe
-aMX
-ctx
-cut
-ctP
-ctY
-cuh
-cuq
-cuE
-aYY
-yiJ
-ygR
-yhj
-yhC
-yhU
-yiJ
-aaa
-boj
-bkW
-bmw
-bnZ
-bpm
-bqw
-brz
-bsU
-brD
-bvq
-yjF
-bxF
-byQ
-yjG
-yjM
-yjP
-yjV
-bEN
-bDK
-blj
-bli
-bok
-bok
-bok
-bok
-bok
-tUu
-okG
-snS
-bcQ
-biL
+bkr
+blw
+bmW
+box
+bpN
+bqU
+brY
+bto
+bsc
+bvA
+bwy
+bxW
+bzn
+bAp
+bBk
+bCe
+bDc
+bDS
+bBl
+bDZ
+bFP
+bBo
+bBo
+bBo
+bBo
+bBo
+bLM
+bMt
+bNd
+bNY
+blN
aab
aab
aab
-bSx
-bJh
-bqA
-bqA
-bqA
-bqA
-bqA
-bFL
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
+bEK
+bRl
+bRC
+bRC
+bRC
+bRC
+bRC
+bUn
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
aaa
aaa
aaa
@@ -103444,102 +103732,102 @@ aaa
aab
aab
aaa
-aaa
-aaa
+aab
+aab
aad
aah
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeO
-aeO
-aiu
-ajl
-aiu
-akU
-alO
-amN
-anH
-aad
-aad
-art
+acU
+adk
+adA
+acV
+acV
+adk
+adk
+acV
+adk
+acV
+ahR
+adi
+adk
+adk
+adi
+adk
+anl
+acV
+ahR
aah
-auy
-awa
-axN
-azm
-aAH
-grp
-aEc
-axP
-any
-axP
-aLc
-aMY
-cty
-ctH
-ctQ
-ctZ
-cui
-cur
-cuE
-aYY
-yiJ
-ygS
-yhk
-yhD
-yhV
-yiJ
-yiJ
-yiJ
-yji
-yji
-yiZ
-yji
-yjv
-brA
-bsV
-bua
-bvr
-ufe
-qFn
-fmW
-yjH
-bDK
-chB
-oqI
-hTM
-bDK
-mgS
-bok
-bok
-bok
-bok
-bok
-utc
-hjD
-biL
-biL
-bcR
-biL
+asa
+aah
+avd
+awI
+azV
+awK
+aEQ
+aCX
+aEP
+awK
+aIH
+awK
+aLP
+aNK
+aPw
+aRc
+aSH
+aUq
+aVB
+aXf
+aPu
+aZQ
+baT
+bcm
+bdS
+bfp
+bgD
+baT
+baT
+baT
+blx
+blx
+boy
+blx
+bqV
+brZ
+btp
+bus
+bvB
+bwz
+bxX
+bzo
+bAq
+bBl
+bCf
+bDd
+bDT
+bBl
+bFN
+bBo
+bBo
+bBo
+bBo
+bBo
+bHD
+bLN
+blN
+blN
+bNZ
+blN
aab
aab
aab
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
-bSx
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
+bEK
aab
aab
aab
@@ -103701,90 +103989,90 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
+aab
+aab
+ami
aah
-aad
-adl
-adD
-adl
-aeO
+acU
+adi
+adB
+aej
+aej
afm
-ael
-agc
-ael
-adI
-ahC
+adn
+acV
+adA
adl
-aen
-aen
-adl
-aen
-amO
-adI
-aad
-aav
-afB
-asM
-auz
-awb
-axO
-azn
-aAI
-aCk
-awb
-awb
-aHS
-awb
-aLf
-aMZ
-ctz
-ctI
-cua
-cua
-cuj
-cus
-cuE
-aYZ
-yiJ
-ygT
-yhl
-yhE
-yhW
-yim
-yiw
-yiJ
-yiN
-yiU
-yja
-yjj
-yjw
-brB
-bsW
-bue
-bub
-bub
-bub
-bub
-bub
-yjN
-chC
-bDK
-epT
-bDK
-gcq
-bok
-bok
-biL
-biL
-biL
-bKF
-biL
-biL
-blj
-bcR
-biL
+cip
+adi
+adi
+adk
+adJ
+amc
+anm
+aol
+apA
+aqL
+asc
+afk
+ave
+awJ
+ayw
+azW
+aBt
+aCY
+awJ
+awJ
+aII
+awJ
+aLS
+aNL
+aPx
+aRd
+aSI
+aSI
+aVC
+aXg
+aPu
+aZR
+baT
+bcn
+bdT
+bfq
+bgE
+bhV
+bjj
+baT
+bly
+bmX
+boz
+bpO
+bqW
+bsa
+btq
+but
+buw
+buw
+buw
+buw
+buw
+bBm
+bCg
+bBl
+bDU
+bBl
+bFO
+bBo
+bBo
+blN
+blN
+blN
+bKZ
+blN
+blN
+bDZ
+bNZ
+blN
aab
aab
aab
@@ -103957,91 +104245,91 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
+aab
+aab
+aab
+atu
aah
-aad
+acU
+acV
+adC
+aek
+adG
+acV
+adD
+agb
+adD
+adk
+ahR
+adk
+adi
+acV
+acV
+amd
adm
-adl
-adl
-aeP
-afn
-afG
-agd
-afG
-agX
-ahD
-adl
-adl
-aen
-akV
-alP
-amP
-anI
-aoW
-aqf
-arw
-asN
-auy
-ygx
-axP
-azo
-aAJ
-aCl
-aEd
-aGa
-any
-axP
-aLg
-aNa
-ctA
-ctJ
-cut
-cut
-cut
-cut
-cuC
-aYY
-yiJ
-ygU
-yhm
-yhF
-yhX
-yin
-yix
-yiH
-yiO
-yiV
-yjb
-yjk
-yjy
-cht
-chu
-omx
-bvs
-bvs
-bvs
-bvs
-bvs
-bub
-yjU
-bok
-yka
-biL
-biL
-biL
-utc
-ykd
-bJK
-bJK
-bLs
-bMm
-biL
-blj
-bcR
-biL
+adm
+ahR
+acn
+acn
+aax
+avd
+awK
+awK
+awK
+aBu
+awK
+awK
+awK
+aIH
+awK
+aLT
+aNM
+aPy
+aRe
+aRb
+aRb
+aRb
+aRb
+aYv
+aZQ
+baT
+bco
+bdU
+bfr
+bgF
+bhW
+bjk
+bks
+blz
+bmY
+boA
+bpP
+bqX
+bsb
+btr
+buu
+bvC
+bvC
+bvC
+bvC
+bvC
+buw
+bCh
+bBo
+bDV
+blN
+blN
+blN
+bHD
+bIG
+bJp
+bJp
+bLa
+bLO
+blN
+bDZ
+bNZ
+blN
aab
aab
aab
@@ -104214,94 +104502,94 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
+aab
+aab
+aab
+civ
aah
-aad
-adn
-adl
-aek
-aeO
+acU
+acV
+adD
+ael
+adD
+acV
+adD
+agb
+adH
adm
-afG
-age
-afG
-ael
-ahE
-aen
-adl
-adI
-adI
-alQ
-ael
-ael
-aad
-aae
-aah
-abK
-auy
-auy
-auy
-auy
-auy
-auy
-auy
-auy
-auy
-aJu
-aLg
-aNa
-ctB
-ctK
-ctT
-cuc
-cul
-cuu
-cuE
-aZa
-ygG
-yhY
-yhn
-yhG
-yhY
-yio
-yiy
-yiJ
-yiP
-yiW
-yjc
-yjl
-yjy
-brD
-bsY
-bud
-bvs
-bvs
-bvs
-bvs
-bvs
-bub
-yjU
-bok
-yka
-biL
-blj
-biL
-ykc
-biL
-biL
-biL
-biL
-bMn
-biL
-bok
-bcR
-biL
-bBB
-bBP
-bCC
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+agD
+agD
+acn
+avd
+ayv
+aBs
+aCZ
+aBs
+aGN
+cis
+cit
+avd
+aKg
+aLT
+aNM
+aPz
+aRf
+aSJ
+aUr
+aVD
+aRa
+aPu
+aZS
+baU
+bcp
+bdV
+bfs
+bcp
+bhX
+bjl
+baT
+blA
+bmZ
+boB
+bpQ
+bqX
+bsc
+bts
+buv
+bvC
+bvC
+bvC
+bvC
+bvC
+buw
+bCh
+bBo
+bDV
+blN
+bDZ
+blN
+bHE
+blN
+blN
+blN
+blN
+bLP
+blN
+bBo
+bNZ
+blN
+bPj
+bPI
+bQf
aaa
aaa
aaa
@@ -104472,93 +104760,93 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
+aab
+aab
aad
aah
-aad
-ado
+acU
+adl
adE
-ael
-aeQ
-afo
-afH
-agf
-afG
-adI
-ahC
-adI
-ael
-aen
-aeO
-aeO
-aeO
-aeO
-aad
-aad
-aej
-aad
-aaR
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aGb
-ygx
-aLh
-ctt
-cuE
-cuE
-cuE
-cuE
-cuE
-cuE
-cuE
-aZb
-yiJ
-ygW
-yho
-yhH
-yhZ
-yip
-yiz
-yiJ
-yiQ
-yiX
-yjd
-yjm
-yjz
-brD
-bsS
-bub
-bvs
-bvs
-bvs
-bvs
-bvs
-bub
-yjU
-bok
-yka
-biL
-blj
-bok
-bEB
-biL
-bJL
-bKH
-bJL
-bMo
-biL
-bvj
-bzM
-bAN
-bBC
-bBQ
-bCD
+aem
+adD
+adk
+adC
+agc
+agA
+acV
+ahT
+aiN
+aiN
+aiN
+aiN
+aiO
+aiN
+aiN
+aiN
+aiN
+agD
+agD
+avf
+avf
+avf
+avf
+avf
+avf
+avf
+avf
+avf
+awK
+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
+bCh
+bBo
+bDV
+blN
+bDZ
+bBo
+bHF
+blN
+bJq
+bKn
+bJq
+bLQ
+blN
+bNe
+bOa
+bOB
+bPk
+bPJ
+bQg
aaa
aaa
aaa
@@ -104730,92 +105018,92 @@ aaa
aaa
aaa
aaa
-aaa
+aab
aad
aah
-aad
-adp
-adF
-adI
+acU
+adm
+adD
+aen
aeR
-adE
-afI
-agg
-agA
-aen
-ahF
-aiv
-aen
-ajY
-aeO
-aaa
-aaa
-aaa
-aaa
-aad
-aah
-aad
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aGb
-aJv
-aLg
-aNc
-auy
-aQr
-aRU
-aTB
-aQt
-aiZ
-aXD
-aYY
-yiJ
-yiJ
-yiJ
-yiJ
-yiJ
-bEH
-bEH
-bEH
-bEH
-bEH
-bEH
-bEH
-yjA
-brF
-bsY
-buc
-bvs
-bvs
-bvs
-bvs
-bvs
-bub
-yjU
-bok
-yka
-biL
-bli
-bok
-nBa
-biL
-bJL
-bJL
-bok
-bMo
-biL
-biL
-biL
-biL
-bBE
-bBP
-bCC
+afn
+adD
+agb
+adH
+acV
+ahT
+aiN
+aiN
+aiN
+aiN
+aiO
+aiN
+aiN
+aiN
+aiN
+aiN
+aiN
+aiN
+aiN
+aiO
+aiN
+aiN
+aiN
+aiN
+aiN
+avf
+awK
+aLT
+aNO
+avd
+aRg
+aSK
+aUs
+aRi
+aXh
+aYw
+aZQ
+baT
+baT
+baT
+baT
+baT
+bhZ
+bhZ
+bhZ
+bhZ
+bhZ
+bhZ
+bhZ
+bqZ
+bsd
+bts
+bux
+bvC
+bvC
+bvC
+bvC
+bvC
+buw
+bCh
+bBo
+bDV
+blN
+bFP
+bBo
+bHG
+blN
+bJq
+bJq
+bBo
+bLQ
+blN
+blN
+blN
+blN
+bPl
+bPI
+bQf
aaa
aaa
aaa
@@ -104987,86 +105275,86 @@ aaa
aaa
aaa
aaa
-aaa
-aad
-abG
-aad
-adp
-adG
-aem
-aeS
-afp
-adE
-adI
-adI
-aen
-ahG
-aiw
-aen
-ajZ
-aeO
-aaa
-aad
-aad
-aad
-aad
-aav
-aad
aab
-aab
-axQ
-arK
-axQ
-arK
-axQ
-arK
-aGb
-aHT
-aJw
-any
-auy
-aQs
-aRV
-aTC
-aQt
-aWp
-aXE
-aZc
-bam
-bbE
-bdb
-beu
-aRV
-bEH
-biE
-bjS
-blb
-chg
-bof
-yjn
-yjB
-brD
-bsY
-bud
-bvs
-bvs
-bvs
-bvs
-bvs
-bub
-yjU
-bok
-yka
-biL
-bok
-bok
-bEB
-biL
-bJM
-bKI
-bLt
-bMp
-biL
+aad
+ciw
+acU
+acV
+adF
+adk
+adk
+afl
+acV
+adk
+afl
+acV
+ahT
+aiN
+aiN
+aiO
+aiO
+aiO
+aiO
+aiO
+aiO
+aiO
+aiN
+aiO
+aiO
+aiO
+aiO
+aiO
+aiO
+aiO
+aiN
+aiN
+avf
+aIH
+aLV
+aIH
+avd
+aRh
+aSL
+aUt
+aRi
+aXi
+aYx
+aZU
+baV
+bcr
+bdX
+bfu
+aSL
+bhZ
+bjn
+bkt
+blC
+bnb
+boD
+bpS
+bra
+bsc
+bts
+buv
+bvC
+bvC
+bvC
+bvC
+bvC
+buw
+bCh
+bBo
+bDV
+blN
+bBo
+bBo
+bHF
+blN
+bJr
+bKo
+bLb
+bLR
+blN
aaa
aaa
aaa
@@ -105244,86 +105532,86 @@ aaa
aaa
aaa
aaa
-aaa
-aad
-aah
-aad
-adp
-adH
-aen
-aeT
-ael
-ael
-adG
-aen
-adI
-ahH
-adI
-aen
-ajZ
-aeO
-aaa
-aad
-acC
-aah
-aad
-aae
-asO
aab
-awd
-axR
-axR
-axR
-axR
-axR
-arK
-aHU
-aJx
-aLg
-aNd
-auy
-aQt
-aRW
-aQt
-aQt
-aWq
-aXF
-aXF
-aXF
-bbF
-aXF
-dLZ
-aRV
-bEH
-yiA
-bGM
-blc
-bmE
-bog
-bps
-wNz
-brH
-btc
-bub
-bub
-bub
-bub
-bub
-bub
-bub
-ajL
-gbw
-vOX
-ykb
-bEQ
-bEQ
-bIg
-biL
-bok
-oEo
-bLu
-bLt
-biL
+aad
+aah
+acU
+adm
+adG
+aeo
+aeS
+adm
+adH
+agd
+agB
+adk
+ahT
+aiO
+aiO
+aiO
+alf
+ame
+ann
+aom
+apB
+aiO
+aiO
+aiO
+avg
+alh
+ayx
+azY
+ano
+aiO
+aiO
+aiO
+aiO
+aKh
+aLT
+aNP
+avd
+aRi
+aSM
+aRi
+aRi
+aXj
+aYy
+aYy
+aYy
+bcs
+aYy
+bfv
+aSL
+bhZ
+bjo
+bku
+blD
+bnc
+boE
+bpT
+brb
+bse
+btt
+buw
+buw
+buw
+buw
+buw
+buw
+buw
+bCi
+bDe
+bDW
+bEO
+bFQ
+bFQ
+bHH
+blN
+bBo
+bKp
+bLc
+bLb
+blN
aaa
aaa
aaa
@@ -105500,87 +105788,87 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
-aah
-aad
-adp
-adI
-adI
-aeU
-adI
-ael
-adJ
-ael
-adI
-ahG
-adG
-aen
-aka
-aeO
-aaa
-aad
-aeX
-aah
-aqg
-abG
-asP
aab
-arK
-axR
-axR
-axR
-axR
-axR
-aGb
-aHV
-aJx
-aLj
-aNe
-aOK
-aQu
-aQu
-aQu
-aQu
-aWr
-aXG
-aZd
-ban
-bbG
-aXF
-bew
-aRV
-bEH
-biG
-bGM
-bjU
-bmF
-boh
-yjo
-bqD
-brI
-btd
-buh
-bvt
-bwt
-bxG
-byR
-bAa
-byU
-chE
-fKy
-bmK
-biL
-biL
-biL
-bok
-biL
-bJL
-bKK
-bLt
-bLv
-biL
+aab
+aad
+aah
+acU
+acV
+adG
+aep
+adC
+adi
+adG
+age
+aeS
+adl
+ahT
+aiO
+aiO
+aki
+alg
+amf
+amf
+aon
+apC
+aiO
+asd
+ats
+ats
+ats
+ayy
+ats
+ats
+aDa
+aiO
+aGO
+azY
+awK
+aLW
+aNQ
+aPA
+aRj
+aRj
+aRj
+aRj
+aXk
+aYz
+aZV
+baW
+bct
+aYy
+bfw
+aSL
+bhZ
+bjp
+bku
+blE
+bnd
+boF
+bpU
+brc
+bsf
+btu
+buy
+bvD
+bwA
+bxY
+bzp
+bAr
+bzs
+bCj
+bDf
+blL
+blN
+blN
+blN
+bBo
+blN
+bJq
+bKq
+bLb
+bLd
+blN
aaa
aaa
aaa
@@ -105757,87 +106045,87 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
-aah
-aad
-adq
-adI
-adH
-aeS
-adI
-afG
-agh
-afG
-adI
-ahI
-adG
-adn
-aka
-aeO
-aaa
-aad
-adk
-acB
-aad
-arx
-asP
aab
-awd
-axR
-axR
-axR
-axR
-axR
-aGb
-aHV
-aJx
-aLk
-axP
-aGb
-aGb
-aGb
-aGb
-aGb
-aGb
-aXH
-aZe
-bao
-bbH
-aXF
-bcZ
-maz
-bEH
-biH
-bGM
-bIQ
-bmF
-boh
-bpu
-oSF
-brD
-bte
-bui
-bvu
-bwu
-bvu
-byS
-bAb
-byU
-biL
-biL
-bDO
-biL
-bFS
-blg
-bok
-biL
-bok
-bKL
-bLt
-bLv
-biL
+aab
+ami
+aah
+acU
+adk
+adH
+aeq
+adH
+acV
+afF
+agb
+adD
+acV
+ahT
+aiO
+aiO
+akj
+alh
+ano
+amg
+aoo
+apD
+aqM
+ase
+ase
+ase
+ase
+ayz
+ase
+ase
+ase
+aER
+aGP
+apD
+aKi
+aLX
+aNR
+avd
+avd
+avd
+avd
+avd
+avd
+aYy
+aZW
+baX
+bcu
+aYy
+bfx
+bgH
+bhZ
+bjq
+bku
+blF
+bnd
+boF
+bpV
+brd
+bsc
+btv
+buz
+bvE
+bwB
+bvE
+bzq
+bAs
+bzs
+blN
+blN
+bDX
+blN
+bFR
+bBr
+bBo
+blN
+bBo
+bKr
+bLb
+bLd
+blN
aaa
aaa
aaa
@@ -106013,88 +106301,88 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
-aah
-aad
-adr
-adJ
-adI
-aeO
-aen
-afG
-agi
-afG
-agY
-ahJ
-aen
-ajm
-aen
-aeO
-aaa
-aad
-aad
-aad
-aad
-aae
-asP
aab
-arK
-axR
-axR
-axR
-axR
-axR
-aGb
-aHV
-aJx
-aLl
-aNf
-aNf
-aQv
-aRX
-aTD
-aUL
-aWs
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-bfM
-bEH
-biI
-bjW
-bHY
-bmH
-boh
-bpu
-oSF
-brJ
-btf
-buj
-bvv
-bwv
-bxH
-bxH
-bAc
-yjO
-fCh
-bok
-bmK
-biL
-bFU
-bDR
-bok
-biL
-bJM
-bKL
-bLt
-bMq
-biL
+aab
+aab
+atu
+aah
+acU
+adk
+adH
+aer
+adH
+afl
+adG
+age
+aeS
+acV
+ahT
+aiO
+aiO
+aki
+ali
+amh
+anp
+aop
+apE
+aqN
+asf
+att
+att
+att
+ayA
+att
+att
+aDb
+aiO
+aGQ
+azY
+awK
+aLY
+aNS
+aNS
+aRk
+aSN
+aUu
+aVE
+aXl
+aPC
+aPC
+aPC
+aPC
+aPC
+aPC
+bgI
+bhZ
+bjr
+bkv
+blG
+bne
+boF
+bpV
+brd
+bsg
+btw
+buA
+bvF
+bwC
+bxZ
+bxZ
+bAt
+bBn
+bCk
+bBo
+blL
+blN
+bFS
+bGK
+bBo
+blN
+bJr
+bKr
+bLb
+bLS
+blN
aaa
aaa
aaa
@@ -106270,88 +106558,88 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aad
-aah
-aad
-aad
-aad
-aeo
-aad
-aen
-aen
-adH
-agB
-ael
-ahK
-aen
-aen
-adI
-aeO
-aaa
-aaa
-aaa
-aaa
-aad
-aae
-asQ
aab
-awd
-axR
-axR
-axR
-axR
-axR
-arK
-aHW
-aJx
-aLm
-axP
-axP
-aMX
-aRY
-aTE
-aUM
-aWt
-aOM
-aXK
-bap
-bbI
-bdc
-aOM
-bfM
-bEH
-cod
-bjX
-blf
-bmI
-eSy
-bpw
-oSF
-brK
-bmw
-buk
-bvw
-bww
-bxI
-byT
-bAd
-byU
-uqm
-bok
-byY
-biL
-byV
-bok
-bok
-biL
-bJN
-bKL
-bLt
-bLv
-biL
+aab
+aab
+civ
+aah
+cip
+adn
+adI
+adi
+aej
+aej
+afG
+adk
+adl
+adJ
+ahT
+aiO
+aiO
+aiO
+ciq
+cir
+anq
+alj
+alj
+aiO
+aiO
+aiO
+avg
+alh
+ayB
+azY
+ano
+aiO
+aiO
+aiO
+aiO
+aKh
+aLZ
+awK
+awK
+aRl
+aSO
+aUv
+aVF
+aXm
+aPC
+aYC
+baY
+bcv
+bdY
+aPC
+bgI
+bhZ
+bjs
+bkw
+blH
+bnf
+boG
+bpW
+brd
+bsh
+bmW
+buB
+bvG
+bwD
+bya
+bzr
+bAu
+bzs
+bCl
+bBo
+blK
+blN
+bAv
+bBo
+bBo
+blN
+bJs
+bKr
+bLb
+bLd
+blN
aaa
aaa
aaa
@@ -106528,87 +106816,87 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aad
-aah
-aah
-aah
-aah
-aah
-aad
-aen
-afJ
-aen
-aem
-agX
-aeO
-aix
-ahL
-aix
-aeO
-aeO
-aeO
-aeO
-aeO
-aad
-aae
-aad
aab
aab
-axS
-arK
-axS
-arK
-axS
-arK
-aGb
-aJy
-aLn
-aNg
-aOL
-aQw
-aRZ
-aTF
-aQw
-aWu
-aXI
-aZf
-baq
-bbJ
-bdd
-aOM
-bev
-bEH
-bEH
-bEH
-bEH
-bEH
-bEH
-bEH
-bjB
-brL
-bjB
-btj
-bvx
-btj
-btj
-byU
-byU
-byU
-bok
-bok
-byY
-biL
-biL
-biL
-bok
-biL
-bok
-bKL
-bLv
-bLv
-biL
+aad
+aah
+acU
+adi
+adJ
+aes
+adi
+adi
+aej
+adk
+acV
+afG
+ahT
+aiN
+aiN
+aiO
+aiO
+ciu
+aiO
+aiO
+aiO
+aiO
+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
+bzs
+bzs
+bzs
+bBo
+bBo
+blK
+blN
+blN
+blN
+bBo
+blN
+bBo
+bKr
+bLd
+bLd
+blN
aaa
aaa
aab
@@ -106786,86 +107074,86 @@ aaa
aaa
aaa
aaa
-aaa
-aad
-aad
-aad
-aad
+aab
aad
aah
-aad
-afq
-aen
-adG
-aen
-afn
-aeO
-aiy
+acU
+adk
+adk
+acV
adm
-ael
-adn
-adn
-amQ
-adI
-aoX
-aad
-aae
-aad
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aab
-aGb
-aJz
-anK
-aNh
-aOM
-aQx
-aSa
-aTG
-aTG
-aWv
-aOM
-aZg
-bar
-bbK
-bde
-aOM
-bex
-bhj
-biK
-biK
-grI
-bjB
-pBU
-bpx
-bqE
-brM
-bjB
-bul
-bvy
-hoR
-ufj
-btj
-byV
-bok
-bok
-byW
-bDQ
-bwA
-bok
-bGS
-bok
-biL
-bok
-bKL
-bLv
-bLv
-biL
+acV
+adF
+acV
+acV
+acV
+ahT
+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
+bjt
+bjt
+blI
+bng
+boH
+bpX
+bre
+bsj
+bng
+buD
+bvI
+buE
+byb
+buC
+bAv
+bBo
+bBo
+bAw
+bDY
+bEP
+bBo
+bGL
+bBo
+blN
+bBo
+bKr
+bLd
+bLd
+blN
aaa
aab
aab
@@ -107043,86 +107331,86 @@ aaa
aaa
aaa
aaa
-aaa
aab
-aaa
-aab
-aaa
aad
-aah
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aiy
-ael
-aih
-akW
-adl
-adI
-adE
-aoY
-aad
-ary
-aad
-aad
-aad
-aad
-aad
-aAK
-aAK
-aAK
-aAK
-aAK
-aJA
-aLo
-aNi
-aOM
-aQy
-aSb
-aTH
-aUN
-aWw
-aXJ
-aXK
-bas
-bbL
-bdf
-aOM
-bfO
-aQt
-aQt
-aQt
-byX
-bjB
-hnv
-bpy
-bqF
-yjC
-bjB
-hoR
-oro
-hoR
-qia
-btj
-byW
-bAe
-bAe
-bCa
-bok
-biL
-biL
-biL
-bwA
-biL
-bJM
-bKL
-bLv
-bMq
-biL
+ahO
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+acU
+ahT
+aiN
+aiN
+aiN
+aiN
+ciu
+aiN
+aiN
+aiN
+aiN
+agD
+agD
+agD
+agD
+agD
+agD
+aBv
+aBv
+aBv
+aBv
+aBv
+aKl
+aMb
+aNV
+aPD
+aRo
+aSR
+aUy
+aVG
+aXp
+aYB
+aYC
+bbb
+bcy
+beb
+aPC
+bgL
+aRi
+aRi
+aRi
+blJ
+bng
+boI
+bpY
+brf
+bsk
+bng
+buE
+bvJ
+buE
+byc
+buC
+bAw
+bBp
+bBp
+bDg
+bBo
+blN
+blN
+blN
+bEP
+blN
+bJr
+bKr
+bLd
+bLS
+blN
aab
aab
aab
@@ -107300,10 +107588,6 @@ aaa
aaa
aaa
aaa
-aaa
-aab
-aab
-aab
aab
aad
aah
@@ -107311,75 +107595,79 @@ aah
aah
aah
aah
-aah
-aah
-ahL
-adl
-ael
-adl
-adl
-alR
-aen
-anJ
-aen
-aad
-arz
-aah
-aah
-aah
-aah
-abG
-aAL
-aCm
-aEe
-aGc
-aAK
-aJz
-anK
-aNh
-aOM
-aQz
-aSc
-aSc
-aUO
-aSc
-aSc
-aZh
-bat
-bat
-bdg
-aOM
-bfP
-bds
-aiZ
-aQt
-byY
-bjB
-kLa
-bsJ
-bqo
-brO
-bjB
-bum
-bvz
-bwz
-hmA
-btj
-byX
-biL
-biL
-biL
-bok
-biL
+abW
+aml
+abM
+abV
+aaD
+aaD
+agD
+agD
+agD
+agD
+agD
+amj
+agD
+agD
+agD
+agD
+agD
+ahS
+anr
+anr
+anr
+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
+brg
+bsl
+bng
+buF
+bvK
+bwE
+byd
+buC
+blJ
+blN
+blN
+blN
+bBo
+blN
aab
-biL
-bok
-biL
-bok
-bKL
-bLv
-bLv
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLd
+bLd
+blN
aab
aab
aaa
@@ -107558,85 +107846,85 @@ aaa
aaa
aaa
aaa
-aaa
+aad
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+ahh
+aah
+aah
+aah
+aah
+amk
+anr
+anr
+anr
+anr
+anr
+atv
+agD
+agD
+agD
+agD
+aBv
+aDd
+aET
+aGS
+aBx
+aKm
+aMc
+aNW
+aPD
+aRq
+aST
+aUz
+aVI
+aXq
+aYC
+aYC
+aYC
+aYC
+aYC
+bfy
+bgN
+aSL
+bju
+aRi
+blL
+bng
+boK
+bqa
+brh
+bsm
+bng
+buG
+buG
+buE
+byb
+buC
+blK
+bAv
+blN
+bBo
+bBo
+blN
aab
-aab
-aab
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aeO
-aiz
-adE
-ael
-akX
-agX
-aiy
-adI
-aen
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aAK
-aCn
-aEf
-aGd
-aAK
-aJB
-aLp
-aNj
-aOM
-aQA
-aSd
-aTI
-aUP
-aWx
-aXK
-aXK
-aXK
-aXK
-aXK
-bey
-bfQ
-aRV
-biM
-aQt
-bmK
-bjB
-fKg
-oip
-oRZ
-brP
-bjB
-xVE
-xVE
-hoR
-ufj
-btj
-byY
-byV
-biL
-bok
-bok
-biL
-aab
-biL
-bok
-biL
-bok
-bKL
-bLv
-bLv
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLd
+bLd
+blN
aab
aab
aaa
@@ -107815,85 +108103,85 @@ aaa
aaa
aaa
aaa
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
+agD
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
+buC
+buC
+buC
+buC
+buC
+blL
+bBq
+blN
+bBr
+bDZ
+blN
aab
-aab
-aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aeO
-aab
-aab
-aab
-aab
-aab
-aab
-aAK
-aCo
-aEf
-aGe
-aAK
-aJC
-aLq
-aNk
-aON
-aQB
-aSe
-aTJ
-aUQ
-aWy
-aXL
-aZi
-bau
-bbM
-bdh
-aOM
-bfR
-bhk
-biN
-aQt
-bmK
-bjB
-bjB
-bjB
-bjB
-bjB
-bjB
-btj
-btj
-btj
-btj
-btj
-bmK
-bAf
-biL
-blg
-blj
-biL
-aab
-biL
-bok
-biL
-bok
-bKL
-bLt
-bLt
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLb
+bLb
+blN
aab
aab
aaa
@@ -108076,14 +108364,9 @@ aab
aab
aab
aab
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+aab
+aab
+aab
aaa
aaa
aaa
@@ -108100,57 +108383,62 @@ aab
aab
aab
aab
-aAK
-aCp
-aEg
-aGf
-aAK
-aJD
-aEo
-aNl
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOM
-aOQ
-aOQ
-biO
-aZu
-biZ
-biK
-biK
-biK
-biK
-biK
-biK
-biK
-bvA
-bwB
-biK
-biK
-byZ
-blg
-biL
-biL
-biL
-biL
aab
-biL
-bok
-biL
-bJM
-bKL
-bLt
-bMr
-biL
+aab
+aab
+aab
+aab
+aBv
+aDf
+aEU
+aGU
+aBx
+aKo
+aFc
+aNY
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPD
+aPC
+bbf
+bbf
+bjw
+bam
+blM
+bjt
+bjt
+bjt
+bjt
+bjt
+bjt
+bjt
+bvL
+bwF
+bjt
+bjt
+bAx
+bBr
+blN
+blN
+blN
+blN
+aab
+blN
+bBo
+blN
+bJr
+bKr
+bLb
+bLT
+blN
aab
aab
aab
@@ -108334,8 +108622,8 @@ aab
aab
aab
aab
-aaa
-aaa
+aab
+aab
aaa
aaa
aaa
@@ -108357,57 +108645,57 @@ aab
aab
aab
aab
-aAK
-aCq
-aEh
-aEh
-aAK
-aJE
-aLr
-aNm
-aOO
-aQC
-aSf
-aTK
-aUR
-aWz
-aXM
-aZj
-bav
-bbN
-bdi
-bez
-bfS
-aOQ
-bfO
-aZu
-biL
-bmM
-bol
-bol
-bqH
-biL
-biL
-biL
-biL
-biL
-biL
-biL
-biL
-biL
-biL
+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
+blN
+blN
+blN
aab
aab
aab
aab
-biL
-bok
-biL
-bok
-bKL
-bLt
-bLt
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLb
+bLb
+blN
aab
aab
aab
@@ -108610,34 +108898,34 @@ aab
aab
aab
aab
-auA
+avh
aab
aab
aab
-aAK
-aCr
-aEi
-aGg
-aAK
-aJF
-aLs
-aNn
-aOP
-aQD
-aSg
-aTL
-aUS
-aWA
-aXN
-aZk
-baw
-bbO
-bdj
-bav
-bfT
-aOQ
-bfO
-aZu
+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
@@ -108657,14 +108945,14 @@ aab
aaa
aab
aab
-biL
-bok
-biL
-bok
-bKL
-bLt
-bLt
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLb
+bLb
+blN
aaa
aab
aab
@@ -108863,38 +109151,38 @@ aab
aab
aab
aab
-anK
-aqh
-arA
-asR
-anK
-aqh
-axT
-asR
-aAK
-aCs
-aEj
-aGh
-aHX
-aJG
-aLt
-aNo
-aOQ
-aQE
-aSh
-aTM
-aSh
-aWB
-aXO
-aZl
-bav
-bav
-bav
-bav
-bav
-aOQ
-biP
-aZu
+aoq
+aqO
+asg
+atw
+aoq
+aqO
+ayC
+atw
+aBv
+aDi
+aEX
+aGX
+aIJ
+aKr
+aMg
+aOb
+aPH
+aRu
+aSX
+aUD
+aSX
+aXu
+aYG
+bad
+aPH
+aPH
+aPH
+aPH
+aPH
+bbf
+bjx
+bam
aab
aab
aab
@@ -108914,14 +109202,14 @@ aaa
aab
aab
aab
-biL
-bok
-biL
-bok
-bKL
-bLt
-bLt
-biL
+blN
+bBo
+blN
+bBo
+bKr
+bLb
+bLb
+blN
aaa
aaa
aaa
@@ -109119,39 +109407,39 @@ aab
aab
aab
aab
-anK
-anK
-aqi
-arB
-asS
-auB
-awe
-axU
-azp
-aAK
-aAK
-aAK
-aAK
-aAK
-aJH
-aLu
-aNp
-aOO
-aQF
-aSi
-aQF
-aUT
-aWC
-aXP
-aZm
-aOO
-bbP
-bdk
-beA
-bfU
-bhl
-bfO
-aZu
+aoq
+aoq
+aqP
+ash
+atx
+avi
+awM
+ayD
+aAa
+aBx
+aBx
+aBx
+aBx
+aBx
+aKs
+aMh
+aOc
+aPF
+aRv
+aSY
+aRv
+aVM
+aXv
+aYH
+bae
+aPF
+bcC
+beg
+bfA
+bgR
+bic
+bgL
+bam
aab
aab
aab
@@ -109171,14 +109459,14 @@ aaa
aaa
aab
aab
-biL
-bIh
-biL
-bJM
-bKI
-bLw
-bMp
-biL
+blN
+bHI
+blN
+bJr
+bKo
+bLe
+bLR
+blN
aaa
aaa
aaa
@@ -109376,39 +109664,39 @@ aab
aab
aab
aab
-anK
-aoZ
-aqj
-arC
-asT
-auC
-awf
-axV
-azq
-aAM
-aCt
-aEk
-aGi
-aHY
-aJI
-aLv
-aNp
-aOR
-aQG
-aSh
-aTN
-aUU
-aWD
-aXQ
-aZn
-aOR
-bbQ
-bdl
-beB
-bfV
-anK
-bfO
-aZu
+aoq
+apF
+aqQ
+asi
+aty
+avj
+awN
+ayE
+aAb
+aBy
+aDj
+aEY
+aGY
+aIK
+aKt
+aMi
+aOc
+aPI
+aRw
+aSX
+aUE
+aVN
+aXw
+aYI
+baf
+aPI
+bcD
+beh
+bfB
+bgS
+aoq
+bgL
+bam
aab
aab
aab
@@ -109416,11 +109704,11 @@ aab
aab
aab
aab
-anK
-anK
-anK
-anK
-anK
+aoq
+aoq
+aoq
+aoq
+aoq
aaa
aaa
aaa
@@ -109428,14 +109716,14 @@ aaa
aaa
aab
aab
-biL
-biL
-biL
-biL
-biL
-biL
-biL
-biL
+blN
+blN
+blN
+blN
+blN
+blN
+blN
+blN
aaa
aaa
aaa
@@ -109633,58 +109921,58 @@ aab
aab
aab
aab
-anL
-apa
-aqk
-aqk
-asU
-aqk
-aqk
-aqk
-azr
-aAN
-aCu
-aEl
-aGj
-aHZ
-aJI
-aLw
-aNp
-aOP
-aQF
-aSi
-aQF
-aUV
-aWC
-aXR
-aZo
-aOP
-bbR
-bdm
-beC
-bfW
-anK
-bfO
-aZu
+aor
+apG
+aqR
+aqR
+atz
+aqR
+aqR
+aqR
+aAc
+aBz
+aDk
+aEZ
+aGZ
+aIL
+aKt
+aMj
+aOc
+aPG
+aRv
+aSY
+aRv
+aVO
+aXv
+aYJ
+bag
+aPG
+bcE
+bei
+bfC
+bgT
+aoq
+bgL
+bam
aab
aab
aab
aab
aab
-anK
-anK
-anK
-bvB
-bwC
-bxJ
-anK
-anK
-anK
-anK
-anK
-anK
-anK
-anK
+aoq
+aoq
+aoq
+bvM
+bwG
+bye
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
aaa
aaa
aaa
@@ -109890,68 +110178,68 @@ aab
aab
aab
aab
-anM
-apb
-aql
-arD
-asV
-asV
-awg
-axW
-azs
-anK
-aCv
-aEm
-aGk
-auB
-aJJ
-aLu
-aNq
-aOQ
-aQH
-aSj
-aTO
-aOQ
-aWE
-aXS
-aWE
-aOQ
-bbS
-bdn
-anK
-anK
-anK
-biQ
-anK
-blk
-bmN
-bom
-bpA
-bqI
-anK
-anK
-bun
-bvC
-bwD
-bxK
-bza
-anK
-bBd
-bBd
-bBd
-bBd
-bER
-anK
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
+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
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
aaa
aaa
aaa
@@ -110147,68 +110435,68 @@ aab
aab
aab
aab
-anN
-apc
-aql
-arE
-asW
-auD
-awh
-aql
-azt
-anK
-aCw
-aEn
-aGl
-aIa
-aJK
-aLx
-aNr
-aOS
-aQI
-aSk
-aSk
-aSk
-aWF
-aXT
-aSk
-bax
-aSk
-bdo
-beD
-bfX
-bhm
-biR
-bjY
-bll
-aql
-bon
-aql
-aJM
-brQ
-aql
-aJK
-bvD
-aEo
-aEo
-bzb
-anK
-bBd
-bBd
-bCX
-bDS
-bBd
-aZu
-bGT
-bIi
-bIW
-bIi
-bKM
-aRV
-aZu
-bMT
-aRV
-aZu
+aot
+apI
+aqS
+ask
+atB
+avk
+awP
+aqS
+aAe
+avi
+aDm
+aFb
+aHb
+aIM
+aKv
+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
+bam
+bGM
+bHJ
+bIH
+bHJ
+bKs
+aSL
+bam
+bMu
+aSL
+bam
aaa
aaa
aaa
@@ -110399,73 +110687,73 @@ aab
aab
aab
aab
-acs
+acu
aab
aab
aab
-amR
-anK
-apd
-aqm
-arF
-asX
-auE
-awi
-axX
-azu
-aAO
-aCx
-aCx
-aCx
-aIb
-aJL
-aLy
-aNs
-aOT
-aQJ
-aSl
-aTP
-aSl
-aWG
-aXU
-aSl
-bay
-aQJ
-bdp
-anK
-bfY
-anK
-biS
-bjZ
-blm
-bmO
-boo
-bmO
-bmO
-brR
-bmO
-aJG
-bvE
-bwE
-bxL
-bzc
-anK
-bBd
-bBd
-bBd
-bDT
-bBd
-aZu
-bGU
-bIj
-bIX
-bIj
-bKN
-bBe
-bMs
-bBe
-bNA
-aZu
+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
+aKr
+bvP
+bwI
+byg
+bzv
+aoq
+bBs
+bBs
+bBs
+bEb
+bBs
+bam
+bGN
+bHK
+bII
+bHK
+bKt
+bBt
+bLU
+bBt
+bNf
+bam
aaa
aaa
aaa
@@ -110661,68 +110949,68 @@ aab
aab
aab
aab
-anO
-ape
-aql
-arG
-asY
-auF
-awj
-aql
-azv
-anK
-aCy
-aEo
-aGm
-aIc
-aJM
-aJM
-aJM
-aOU
-aQK
-aSm
-aTQ
-aEo
-aWH
-aXV
-aJM
-baz
-aQK
-aCy
-beE
-bfZ
-bhn
-aql
-bka
-bln
-aql
-bop
-aql
-bqJ
-brS
-btl
-aCy
-aEo
-aEo
-bxM
-bzd
-anK
-bBd
-bBd
-bCY
-bDS
-bBd
-aZu
-bGV
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-bMU
-bNB
-aZu
+aou
+apK
+aqS
+asm
+atD
+avm
+awR
+aqS
+aAg
+avi
+aDo
+aFc
+aHc
+aIO
+aKx
+aKx
+aKx
+aPL
+aRA
+aTc
+aUH
+aFc
+aXA
+aYN
+aKx
+bbi
+aRA
+aDo
+bfE
+bgW
+bie
+aqS
+bkz
+blR
+aqS
+boP
+aqS
+brk
+bsp
+btx
+aDo
+aFc
+aFc
+byh
+bzw
+aoq
+bBs
+bBs
+bDi
+bEa
+bBs
+bam
+bGO
+bam
+bam
+bam
+bam
+bam
+bam
+bMv
+bNg
+bam
aaa
aaa
aaa
@@ -110918,68 +111206,68 @@ aab
aab
aab
aab
-anP
-apb
-aql
-aql
-asZ
-asZ
-awk
-axY
-azw
-aAP
-aAP
-aAP
-aAP
-aAP
-aJN
-aLz
-aNt
-aOV
-aQL
-anK
-aTR
-aUW
-aWI
-aWI
-aWI
-baA
-aWI
-aWI
-aWI
-aWI
-auB
-biT
-auB
-blo
-bmP
-boq
-bpB
-bqI
-anK
-anK
-buo
-bvF
-bwF
-bxN
-bze
-anK
-bBd
-bBd
-bBd
-bBd
-bBd
-anK
-bGV
-aZu
+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
+bam
aaa
aaa
aaa
aaa
-aZu
-aZu
-aZu
-aZu
+bam
+bam
+bam
+bam
aaa
aaa
aaa
@@ -111175,60 +111463,60 @@ aab
aab
aab
aab
-anQ
-apf
-aqk
-aqk
-ata
-aqk
-aqk
-aqk
-azx
-aAP
-aCz
-aEp
-aGn
-aAP
-aJO
-aLA
-aNu
-aOW
-aQM
-aAP
-aTS
-axY
-aWI
-aXW
-aZp
-baB
-bbT
-baE
-baE
-aWI
-bho
-bhr
-bkb
-blp
-bmQ
-bor
-bmT
-bqK
-anK
-anK
-anK
-bvG
-bwG
-bxO
-bzf
-anK
-anK
-anK
-anK
-anK
-anK
-anK
-bGV
-aZu
+aow
+apL
+aqR
+aqR
+atF
+aqR
+aqR
+aqR
+aAi
+aBC
+aDp
+aFd
+aHd
+aBB
+aKz
+aMn
+aOh
+aPN
+aRC
+aBC
+aUJ
+ayH
+aXB
+aYO
+bah
+bbk
+bcG
+bem
+bem
+bem
+aRi
+bih
+bkA
+blT
+bnl
+boR
+bno
+brl
+aoq
+aoq
+aoq
+bvR
+bwK
+byj
+bzy
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
+aoq
+bGO
+bam
aaa
aaa
aaa
@@ -111432,60 +111720,60 @@ aab
aab
aab
aaa
-anK
-apg
-aqn
-arH
-atb
-auG
-awl
-axZ
-azy
-aAP
-aCA
-aEq
-aGo
-aAP
-aJP
-aLB
-aNv
-aOX
-aQN
-aSn
-aTT
-aUX
-aWI
-aXX
-aZq
-baC
-bbU
-bdq
-beF
-bga
-bhp
-bhp
-bkb
-blq
-bmR
-bos
-bpC
-bqL
-bkc
+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
+bcH
+bcH
+bgX
+bif
+bjC
+bkA
+blU
+bnm
+boS
+bqd
+brm
+bkB
aab
-anK
-anK
-anK
-anK
-bzg
-bAg
-bBe
-bBe
-bBe
-bBe
-bBe
-bBe
-bGW
-aZu
+aoq
+aoq
+aoq
+aoq
+bzz
+bAy
+bBt
+bBt
+bBt
+bBt
+bBt
+bBt
+bGP
+bam
aaa
aaa
aaa
@@ -111689,60 +111977,60 @@ aab
aab
aab
aaa
-anK
-anK
-aqo
-arI
-atc
-auB
-awm
-aya
-azz
-aAP
-aCB
-aEr
-aCB
-aAP
-aJQ
-aLC
-aNw
-aOY
-aQO
-aSo
-aTU
-aUY
-aWI
-aXY
-aZr
-baD
-bbV
-bdr
-beG
-aWI
-bhq
-bhr
-bkb
-blr
-bmS
-bot
-bpD
-bqM
-bkc
+aoq
+aoq
+aqV
+aso
+atH
+avi
+awU
+ayJ
+aAk
+aBB
+aBB
+aFf
+aBB
+aBB
+aKB
+aMp
+aOj
+aPP
+aRE
+aTe
+aUL
+aVR
+aXB
+aYQ
+baj
+bbm
+bcI
+ben
+bcI
+bgY
+aRi
+bih
+bkA
+blV
+bnn
+boT
+bqe
+brn
+bkB
aab
aab
aaa
aaa
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
+bam
aaa
aaa
aaa
@@ -111947,44 +112235,44 @@ aab
aaa
aaa
aaa
-anK
-aqp
-arJ
-atd
-anK
-aqh
-arA
-atd
-aAP
-aCC
-aEs
-aGp
-aAP
-aJR
-aLD
-aNx
-aOZ
-aQP
-aAP
-aTV
-aUZ
-aWI
-aXZ
-aZs
-baE
-aWI
-aWI
-aWI
-aWI
-aQt
-bhr
-bkb
-bls
-bmT
-bou
-bmT
-bmT
-brT
+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
+beo
+bfF
+bgZ
+aRi
+bih
+bkA
+blW
+bno
+boU
+bno
+bno
+bsq
aab
aab
aab
@@ -112208,40 +112496,40 @@ aab
aab
aab
aab
-auH
+avo
aab
aab
aab
-aAP
-aCD
-aEs
-aGq
-aAP
-aJS
-aLE
-aNy
-aPa
-aQQ
-aAP
-aTW
-aVa
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aQt
-biU
-bkb
-blt
-bmU
-bov
-bpE
-bqN
-brU
+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
@@ -112469,36 +112757,36 @@ aab
aab
aab
aab
-aAP
-cnS
-aEs
-aGr
-aAP
-aJT
-aLE
-aLE
-aPb
-aQR
-aAP
-aTX
-aVb
-aWJ
-aSp
-aZt
-aZt
-aZt
-aZt
-aZt
-aSp
-aQt
-bhr
-bkc
-blu
-bmV
-bow
-bpF
-bqO
-bkc
+aBC
+aDt
+aFg
+aHh
+aBB
+aKE
+aMr
+aMr
+aPS
+aRH
+aBB
+aUO
+aVU
+aXD
+aTf
+bal
+bal
+bal
+bal
+bal
+aTf
+aSL
+bih
+bkB
+blY
+bnq
+boW
+bqg
+brp
+bkB
aab
aab
aab
@@ -112726,30 +113014,30 @@ aab
aab
aab
aab
-aAP
-aCF
-aEt
-aGs
-aAP
-aJU
-aLE
-aJU
-aPc
-aQS
-aAP
-aTY
-aUb
-aUb
-aSp
-aZt
-aZt
-aZt
-aZt
-aZt
-aSp
-aQt
-bhr
-aZu
+aBC
+aDu
+aFh
+aHi
+aBB
+aKF
+aMr
+aKF
+aPT
+aRI
+aBB
+aUP
+aUS
+aUS
+aTf
+bal
+bal
+bal
+bal
+bal
+aTf
+aSL
+bih
+bam
aab
aab
aab
@@ -112983,30 +113271,30 @@ aaa
aab
aab
aab
-aAP
-aCG
-aEu
-aGt
-aAP
-aJV
-aLF
-aNz
-aPd
-aQT
-aAP
-aTZ
-aVc
-aUb
-aSp
-aZt
-aZt
-aZt
-aZt
-aZt
-aSp
-aQt
-bhr
-aZu
+aBC
+aDv
+aFi
+aHj
+aBB
+aKG
+aMs
+aOm
+aPU
+aRJ
+aBB
+aUQ
+aVV
+aUS
+aTf
+bal
+bal
+bal
+bal
+bal
+aTf
+aSL
+bih
+bam
aab
aab
aab
@@ -113240,30 +113528,30 @@ aaa
aab
aab
aab
-aAP
-aAP
-aAP
-aGu
-aAP
-aJW
-aLG
-aNA
-aPe
-aQU
-aAP
-aUa
-aUb
-aUb
-aSp
-aZt
-aZt
-aZt
-aZt
-aZt
-aSp
-aQt
-biV
-aZu
+aBC
+aBB
+aBB
+aHk
+aBB
+aKH
+aMt
+aOn
+aPV
+aRK
+aBB
+aUR
+aUS
+aUS
+aTf
+bal
+bal
+bal
+bal
+bal
+aTf
+aSL
+aSL
+bam
aab
aab
aab
@@ -113497,30 +113785,30 @@ aaa
aaa
aab
aab
-aAQ
-aCH
-aEv
-aGv
-aId
-aId
-aId
-aId
-aPf
-aQV
-aAP
-aUb
-aVd
-aWK
-aSp
-aZt
-aZt
-aZt
-aZt
-aZt
-aSp
-aQt
-biW
-aZu
+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
@@ -113754,30 +114042,30 @@ aaa
aaa
aaa
aab
-aAR
-aCI
-aEw
-aGw
-aGw
-aGw
-aGw
-aGw
-aPg
-aQW
-aAP
-aUc
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aSp
-aQt
-aRV
-aZu
+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
@@ -114011,35 +114299,35 @@ aaa
aaa
aaa
aab
-aAS
-aCJ
-aEx
-aGx
-aIe
-aJX
-aLH
-aNB
-aPh
-aQX
-aAP
-aUb
-aUb
-aUb
-aYa
-aQt
-aQt
-aQt
-aQt
-aQt
-aQt
-aQt
-bhr
-aZu
+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
-acs
+acu
aaa
aab
aaa
@@ -114268,30 +114556,30 @@ aaa
aaa
aaa
aaa
-aAP
-aCK
-aEy
-aGy
-aAP
-aAP
-aAP
-aCK
-aEy
-aQY
-aAP
-aUd
-aUb
-aWL
-aYb
-aRV
-baF
-aRV
-bds
-aRV
-bgb
-bhr
-aRV
-aZu
+aBC
+aDz
+aFm
+aHo
+aBC
+aBC
+aBC
+aDz
+aFm
+aRO
+aBC
+aUU
+aUS
+aXF
+aXC
+aSL
+bbo
+aSL
+aSL
+aSL
+bha
+bih
+aSL
+bam
aaa
aaa
aaa
@@ -114527,28 +114815,28 @@ aaa
aaa
aab
aab
-aEz
+aFn
aab
aaa
aaa
aaa
aab
-aEz
+aFn
aab
-aSp
-aUe
-aVe
-aWM
-aSp
-aZu
-aZu
-aZu
-aZu
-aZu
-aZu
-bhs
-aZu
-aZu
+aTf
+aUV
+aVX
+aXG
+aTf
+bam
+bam
+bam
+bam
+bam
+bam
+bii
+bam
+bam
aaa
aaa
aaa
@@ -114792,20 +115080,20 @@ aab
aab
aab
aab
-aSp
-aSp
-aSp
-aSp
-aSp
-anR
-anR
-anR
-anR
-aZu
-bgc
-aRV
-aZu
-anR
+aTf
+aTf
+aTf
+aTf
+aTf
+aox
+aox
+aox
+aox
+bam
+bhb
+aSL
+bam
+aox
aaa
aab
aaa
@@ -115053,17 +115341,17 @@ aab
aaa
aaa
aaa
-anR
-anR
-anR
-anR
-anR
-aZu
-bgd
-bht
-aZu
-anR
-anR
+aox
+aox
+aox
+aox
+aox
+bam
+bhc
+bij
+bam
+aox
+aox
aab
aab
aab
@@ -115312,16 +115600,16 @@ aab
aab
aaa
aaa
-anR
-anR
-anR
-aZu
-bge
-bhu
-aZu
-anR
-anR
-anR
+aox
+aox
+aox
+bam
+bhd
+bik
+bam
+aox
+aox
+aox
aab
aab
aab
@@ -115570,16 +115858,16 @@ aab
aaa
aaa
aaa
-anR
-anR
-aZu
-aZu
-aZu
-aZu
-anR
-anR
-anR
-anR
+aox
+aox
+bam
+bam
+bam
+bam
+aox
+aox
+aox
+aox
aab
aab
aab
@@ -115828,15 +116116,15 @@ aaa
aaa
aaa
aaa
-anR
-anR
-anR
-anR
-anR
-biX
-biX
-biX
-anR
+aox
+aox
+aox
+aox
+aox
+bjF
+bjF
+bjF
+aox
aab
aab
aab
@@ -116086,14 +116374,14 @@ aaa
aaa
aaa
aaa
-anR
-anR
-anR
-biX
-biX
-biX
-biX
-biX
+aox
+aox
+aox
+bjF
+bjF
+bjF
+bjF
+bjF
aaa
aaa
aab
@@ -116319,23 +116607,23 @@ aaa
aaa
aaa
aaa
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
aaa
aab
aab
@@ -116344,13 +116632,13 @@ aaa
aaa
aab
aab
-anR
-anR
-biX
-biX
-blv
-biX
-biX
+aox
+aox
+bjF
+bjF
+blZ
+bjF
+bjF
aaa
aab
aab
@@ -116576,23 +116864,23 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-anR
+aox
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+aox
aaa
aab
aab
@@ -116602,12 +116890,12 @@ aab
aab
aaa
aaa
-anR
-biX
-biX
-blw
-biX
-biX
+aox
+bjF
+bjF
+bma
+bjF
+bjF
aaa
aaa
aab
@@ -116833,23 +117121,23 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-anR
+aox
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+aox
aaa
aab
aab
@@ -116859,12 +117147,12 @@ aaa
aaa
aaa
aaa
-anR
-biX
-biX
-blx
-biX
-biX
+aox
+bjF
+bjF
+bmb
+bjF
+bjF
aaa
aab
aab
@@ -117090,9 +117378,9 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
+aox
+asq
+asq
aaR
aaR
aaR
@@ -117104,9 +117392,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aab
aaa
@@ -117117,11 +117405,11 @@ aaa
aaa
aaa
aaa
-biX
-biX
-biX
-biX
-biX
+bjF
+bjF
+bjF
+bjF
+bjF
aaa
aab
aab
@@ -117347,9 +117635,9 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
+aox
+asq
+asq
aaR
aaR
aaR
@@ -117361,9 +117649,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aaa
aaa
@@ -117375,9 +117663,9 @@ aab
aaa
aaa
aab
-biX
-biX
-biX
+bjF
+bjF
+bjF
aab
aaa
aab
@@ -117603,10 +117891,10 @@ aaa
aaa
aaa
aaa
-anR
-anR
-arK
-arK
+aox
+aox
+asq
+asq
aaR
aaR
aaR
@@ -117618,9 +117906,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aaa
aaa
@@ -117860,10 +118148,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -117875,9 +118163,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aaa
aaa
@@ -118117,10 +118405,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -118132,9 +118420,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aaa
aaa
@@ -118374,10 +118662,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -118389,9 +118677,9 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
+asq
+asq
+aox
aaa
aaa
aaa
@@ -118631,10 +118919,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -118645,10 +118933,10 @@ aaR
aaR
aaR
aaR
-arK
-arK
-arK
-anR
+asq
+asq
+asq
+aox
aaa
aaa
aaa
@@ -118888,10 +119176,10 @@ aaa
aaa
aaa
aaa
-anR
-anR
-arK
-arK
+aox
+aox
+asq
+asq
aaR
aaR
aaR
@@ -118902,10 +119190,10 @@ aaR
aaR
aaR
aaR
-arK
-arK
-arK
-anR
+asq
+asq
+asq
+aox
aaa
aaa
aaa
@@ -119146,10 +119434,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -119159,10 +119447,10 @@ aaR
aaR
aaR
aaR
-arK
-arK
-anR
-anR
+asq
+asq
+aox
+aox
aaa
aaa
aaa
@@ -119403,10 +119691,10 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -119415,10 +119703,10 @@ aaR
aaR
aaR
aaR
-arK
-arK
-arK
-anR
+asq
+asq
+asq
+aox
aaa
aaa
aaa
@@ -119660,11 +119948,11 @@ aaa
aaa
aaa
aaa
-anR
-anR
-arK
-arK
-arK
+aox
+aox
+asq
+asq
+asq
aaR
aaR
aaR
@@ -119672,10 +119960,10 @@ aaR
aaR
aaR
aaR
-arK
-arK
-arK
-anR
+asq
+asq
+asq
+aox
aaa
aaa
aaa
@@ -119918,21 +120206,21 @@ aaa
aaa
aaa
aaa
-anR
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-anR
-anR
+aox
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+aox
+aox
aaa
aaa
aaa
@@ -120175,20 +120463,20 @@ aaa
aaa
aaa
aaa
-anR
-anR
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-arK
-anR
-anR
+aox
+aox
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+asq
+aox
+aox
aaa
aaa
aaa
@@ -120433,18 +120721,18 @@ aaa
aaa
aaa
aaa
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
-anR
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
+aox
aaa
aaa
aaa
diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm
index 7ca818990e8..82d9f3c2d92 100644
--- a/maps/aurora/aurora-5_interstitial.dmm
+++ b/maps/aurora/aurora-5_interstitial.dmm
@@ -1026,6 +1026,15 @@
"bS" = (
/turf/simulated/floor/plating,
/area/crew_quarters/locker/locker_toilet)
+"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;
@@ -1310,6 +1319,12 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/interstitial_cargo)
+"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)
@@ -1342,6 +1357,13 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/interstitial_cargo)
+"ct" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 5
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/mine/unexplored)
"cu" = (
/obj/structure/grille,
/obj/machinery/door/firedoor,
@@ -1595,6 +1617,13 @@
},
/turf/simulated/floor/plating,
/area/maintenance/interstitial_cargo)
+"cN" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/mine/unexplored)
"cO" = (
/obj/structure/cable{
d1 = 1;
@@ -1606,6 +1635,56 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/plating,
/area/maintenance/interstitial_cargo)
+"cP" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ icon_state = "warningcorner";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/mine/unexplored)
+"cQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "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/weapon/storage/bag/ore,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "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"
+ },
+/turf/simulated/wall/r_wall,
+/area/bridge/selfdestruct)
"da" = (
/obj/machinery/door/airlock/maintenance{
req_access = list(50)
@@ -4928,14 +5007,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/dark,
/area/bridge/selfdestruct)
-"iS" = (
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/wall/r_wall,
-/area/bridge/selfdestruct)
"iT" = (
/obj/structure/banner,
/obj/effect/decal/cleanable/dirt,
@@ -46848,8 +46919,8 @@ ab
ab
ab
ab
-aa
-aa
+mo
+mo
aa
aa
aa
@@ -47104,9 +47175,9 @@ ab
ab
ab
ab
-aa
-aa
-aa
+mo
+mo
+mo
aa
aa
aa
@@ -47356,13 +47427,13 @@ ab
ab
ab
ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+mo
+mo
+mo
+mo
+mo
aa
aa
aa
@@ -47610,16 +47681,16 @@ ab
ab
ab
ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+mo
+mo
+mo
+mo
+mo
+mo
+mo
+mo
aa
aa
aa
@@ -47867,17 +47938,17 @@ ab
ab
ab
aa
-ab
-ab
-ab
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+bT
+bT
+bT
+bT
+bT
+bT
+bT
+mo
+mo
aa
aa
aa
@@ -48124,17 +48195,17 @@ 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
@@ -48381,17 +48452,17 @@ 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
@@ -48638,16 +48709,16 @@ 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
@@ -48895,16 +48966,16 @@ 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
@@ -49152,16 +49223,16 @@ 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
@@ -49409,16 +49480,16 @@ 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
@@ -49667,12 +49738,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -49924,12 +49995,12 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
aa
-aa
-aa
-aa
-aa
+ab
aa
aa
aa
@@ -50181,12 +50252,12 @@ aa
aa
aa
aa
+mo
+mo
+ab
aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
aa
aa
aa
@@ -50438,12 +50509,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -50696,12 +50767,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ou
+ab
+ab
aa
aa
aa
@@ -50953,12 +51024,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+ab
+ab
+ab
+ab
aa
aa
aa
@@ -51211,13 +51282,13 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+mo
aa
aa
aa
@@ -51468,14 +51539,14 @@ aa
aa
aa
aa
+mo
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+mo
+mo
aa
aa
aa
@@ -51726,13 +51797,13 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+mo
+mo
aa
aa
aa
@@ -51983,13 +52054,13 @@ aa
aa
aa
aa
+mo
+mo
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+mo
aa
aa
aa
@@ -52241,12 +52312,12 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
+ab
+mo
aa
aa
aa
@@ -52498,13 +52569,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ab
+ab
+mo
+mo
aa
aa
aa
@@ -52755,13 +52826,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+ab
+ab
+ab
+ab
+mo
aa
aa
aa
@@ -53013,12 +53084,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ab
+ab
+mo
aa
aa
aa
@@ -53270,12 +53341,12 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
+ab
+mo
aa
aa
aa
@@ -53527,13 +53598,13 @@ aa
aa
aa
aa
+mo
+ab
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+mo
+mo
aa
aa
aa
@@ -53784,13 +53855,13 @@ aa
aa
aa
aa
+mo
+mo
+ab
aa
-aa
-aa
-aa
-aa
-aa
-aa
+ab
+ab
+mo
aa
aa
aa
@@ -54042,12 +54113,12 @@ aa
aa
aa
aa
+mo
+ab
aa
aa
-aa
-aa
-aa
-aa
+ab
+mo
aa
aa
aa
@@ -54299,12 +54370,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ab
+ab
+mo
aa
aa
aa
@@ -54556,12 +54627,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+mo
+ab
+ab
+ab
+mo
aa
aa
aa
@@ -54814,12 +54885,12 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
+mo
+ab
+ab
+ab
+mo
+mo
aa
aa
aa
@@ -54841,8 +54912,8 @@ io
io
io
iN
-iS
-iS
+cW
+cW
iV
iV
iV
@@ -55071,11 +55142,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
mo
mo
+ab
+ab
+ab
mo
mo
aa
@@ -55110,7 +55181,7 @@ ab
ab
ab
ab
-mo
+aa
bc
bc
jm
@@ -55329,10 +55400,10 @@ aa
aa
aa
aa
-aa
-mo
mo
mo
+ab
+ab
mo
mo
io
@@ -55361,13 +55432,13 @@ io
aa
aa
aa
-mo
+aa
ab
ab
ab
ab
-mo
-mo
+aa
+aa
aa
bc
jn
@@ -55589,8 +55660,8 @@ aa
aa
mo
mo
-mo
ab
+mo
io
io
io
@@ -55618,12 +55689,12 @@ io
aa
aa
aa
-mo
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
bc
@@ -55846,7 +55917,7 @@ aa
mo
mo
mo
-mo
+ab
ab
io
io
@@ -55874,13 +55945,13 @@ io
io
aa
aa
-mo
-mo
+aa
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
bc
@@ -56131,13 +56202,13 @@ io
io
aa
aa
-mo
+aa
ab
ab
ab
ab
-mo
-mo
+aa
+aa
aa
aa
bc
@@ -56387,14 +56458,14 @@ io
io
io
aa
-mo
-mo
+aa
+aa
ab
ab
ab
-mo
-mo
-mo
+aa
+aa
+aa
aa
aa
bc
@@ -56644,12 +56715,12 @@ io
io
aa
aa
-mo
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
aa
@@ -56881,7 +56952,7 @@ ab
ab
ab
ab
-mo
+aa
aa
aa
aa
@@ -56900,13 +56971,13 @@ io
io
io
aa
-mo
-mo
+aa
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
aa
@@ -57137,8 +57208,8 @@ ab
ab
ab
ab
-mo
-mo
+aa
+aa
aa
aa
aa
@@ -57157,13 +57228,13 @@ io
io
aa
aa
-mo
+aa
ab
ab
ou
ab
-mo
-mo
+aa
+aa
aa
aa
aa
@@ -57392,9 +57463,6 @@ ab
ou
ab
ab
-mo
-mo
-mo
aa
aa
aa
@@ -57413,13 +57481,16 @@ aa
aa
aa
aa
-mo
-mo
+aa
+aa
+aa
+aa
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
aa
@@ -57649,7 +57720,6 @@ ab
ab
ab
ab
-mo
aa
aa
aa
@@ -57670,13 +57740,14 @@ aa
aa
aa
aa
-mo
+aa
+aa
ab
ab
ab
ab
-mo
-mo
+aa
+aa
aa
aa
aa
@@ -57905,8 +57976,6 @@ mo
ab
ab
ab
-mo
-mo
aa
aa
aa
@@ -57926,13 +57995,15 @@ aa
aa
aa
aa
-mo
-mo
+aa
+aa
+aa
+aa
ab
ab
ab
ab
-mo
+aa
aa
aa
aa
@@ -58162,21 +58233,6 @@ mo
ab
ab
ab
-mo
-aa
-aa
-aa
-aa
-mo
-mo
-mo
-aa
-aa
-aa
-aa
-aa
-aa
-aa
aa
aa
aa
@@ -58184,12 +58240,27 @@ aa
aa
mo
mo
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
ab
ab
ab
ab
-mo
-mo
+aa
+aa
aa
aa
aa
@@ -58419,34 +58490,34 @@ mo
ab
ab
ab
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-mo
-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
ab
ab
ab
ab
-ab
-mo
-mo
+aa
+aa
aa
aa
aa
@@ -58678,8 +58749,7 @@ ab
ab
ab
ab
-mo
-mo
+aa
mo
mo
mo
@@ -58695,9 +58765,10 @@ aa
aa
aa
aa
-mo
-mo
-ab
+aa
+aa
+aa
+aa
ab
ab
ab
@@ -58936,7 +59007,7 @@ ab
ab
ab
ab
-ab
+mo
mo
mo
mo
@@ -58946,13 +59017,13 @@ mo
mo
aa
aa
-mo
-mo
-mo
-mo
-mo
-mo
-mo
+aa
+aa
+aa
+aa
+aa
+aa
+aa
ab
ab
ab
@@ -59202,12 +59273,12 @@ mo
mo
mo
mo
-mo
-mo
+aa
+aa
ab
ab
-mo
-mo
+aa
+aa
ab
ab
ab